Added twitter archive

This commit is contained in:
Eric Wagoner 2022-12-20 23:03:23 -05:00
parent 34ebb789c3
commit d845c2768a
10521 changed files with 495330 additions and 0 deletions

19
content/mytweets.md Normal file
View File

@ -0,0 +1,19 @@
## Welcome to the @ewagoner Twitter archive
{{< rawhtml >}}
<script src="/mytweets/searchDocuments.js"></script>
<p>This is a page where you can search many of my tweets, get a link to an archived version, and view all the content in nice, threaded form where applicable. This does not include replies to other people in this archive, so this is just "standalone" tweets and threads.</p>
<div class="tweet">
<p id="loading">Loading search...</p>
<div id="search" hidden>
<input id="search-input" type="search" />
<div id="sorting">Sort by: <button class="sort-button" onclick="sortResults('most-relevant')">most relevant</button> | <button class="sort-button" onclick="sortResults('oldest-first')">oldest first</button> | <button class="sort-button" onclick="sortResults('newest-first')">newest first</button> | <button class="sort-button" onclick="sortResults('most-popular')">most popular</button></div>
<div id="output"></div>
</div>
</div>
<p>This site was made with <a href="https://tinysubversions.com/twitter-archive/make-your-own/">this Twitter archiving tool</a>.</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/elasticlunr/0.9.6/elasticlunr.min.js"></script>
<script src="/mytweets/app.js"></script>
{{< /rawhtml >}}

View File

@ -0,0 +1,2 @@
<!-- raw html -->
{{.Inner}}

57
static/mytweets/app.js Normal file
View File

@ -0,0 +1,57 @@
let results;
var index = elasticlunr(function () {
this.addField('full_text');
this.setRef('id_str');
});
const searchInput = document.getElementById('search-input');
function processData(data) {
document.getElementById('loading').hidden = true;
document.getElementById('search').hidden = false;
for (doc of data) {
index.addDoc(doc);
}
}
processData(searchDocuments);
function sortResults(criterion) {
if (criterion === 'newest-first') {
results = results.sort(function(a,b){
return new Date(b.doc.created_at) - new Date(a.doc.created_at);
});
renderResults();
}
if (criterion === 'oldest-first') {
results = results.sort(function(a,b){
return new Date(a.doc.created_at) - new Date(b.doc.created_at);
});
renderResults();
}
if (criterion === 'most-relevant') {
results = results.sort(function(a,b){
return b.score - a.score;
});
renderResults();
}
if (criterion === 'most-popular') {
results = results.sort(function(a,b){
return (+b.doc.favorite_count + +b.doc.retweet_count) - (+a.doc.favorite_count + +a.doc.retweet_count);
});
renderResults();
}
}
function renderResults() {
const output = results.map(item => `<p class="search_item"><div class="search_link"><a href="ewagoner/status/${item.doc.id_str}">link</a></div> <div class="search_text">${item.doc.full_text}</div><div class="search_time">${new Date(item.doc.created_at).toLocaleString()}</div><hr class="search_divider" /></p>`.replace(/\.\.\/\.\.\/tweets_media\//g,'ewagoner/tweets_media/'));
document.getElementById('output').innerHTML = output.join('');
}
function onSearchChange(e) {
results = index.search(e.target.value);
renderResults();
}
searchInput.addEventListener('input', onSearchChange);

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100004785247367169" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="This stuff makes *the best* mochas. http://instagr.am/p/Ji3Ml/" />
<title>This stuff makes *the best* mochas. http://instagr.am/p/Ji3Ml/</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
This stuff makes *the best* mochas. http://instagr.am/p/Ji3Ml/
</p>
<p class="created_at">
8/6/2011, 8:46:13 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100004785247367169">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1000145259643490304" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Tonights experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmons done.
Dinner might suck, but the kitchen smells heavenly." />
<title>Tonights experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmons done.
Dinner might suck, but the kitchen smells heavenly.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Tonights experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmons done. <br><br>Dinner might suck, but the kitchen smells heavenly.
</p>
<p class="created_at">
5/25/2018, 6:43:06 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1000145259643490304">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10004104151568384" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Cleverly hide 72 oz. of beer... in your gigantic fake beard! http://tumblr.com/x69y2tebh (It's just a brilliant gift box, via @whiskerino)" />
<title>Cleverly hide 72 oz. of beer... in your gigantic fake beard! http://tumblr.com/x69y2tebh (It's just a brilliant gift box, via @whiskerino)</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Cleverly hide 72 oz. of beer... in your gigantic fake beard! http://tumblr.com/x69y2tebh (It's just a brilliant gift box, via @whiskerino)
</p>
<p class="created_at">
12/1/2010, 11:15:38 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10004104151568384">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1000595719101796357" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @CanSpice: Okay this thread is a roller coaster of emotions except its all ups and no downs. <a href='https://twitter.com/ehernandez/status/1000390899120136193'>https://twitter.com/ehernandez/status/1000390899120136193</a>" />
<title>RT @CanSpice: Okay this thread is a roller coaster of emotions except its all ups and no downs. <a href="https://twitter.com/ehernandez/status/1000390899120136193">https://twitter.com/ehernandez/status/1000390899120136193</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @CanSpice: Okay this thread is a roller coaster of emotions except its all ups and no downs. <a href="https://twitter.com/ehernandez/status/1000390899120136193">https://twitter.com/ehernandez/status/1000390899120136193</a>
</p>
<p class="created_at">
5/27/2018, 12:33:04 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1000595719101796357">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100061119347032065" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Oh, great. London's burning. RT @Shmeelitche Remains of a Carpet shop in #tottenham after riots http://twitpic.com/6289b1" />
<title>Oh, great. London's burning. RT @Shmeelitche Remains of a Carpet shop in #tottenham after riots http://twitpic.com/6289b1</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Oh, great. London's burning. RT @Shmeelitche Remains of a Carpet shop in #tottenham after riots http://twitpic.com/6289b1
</p>
<p class="created_at">
8/7/2011, 12:30:04 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 2</p>
<a class="permalink" href="../100061119347032065">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100063184999821312" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Beautiful 'Speckled Calico' lima beans from my market, grown at Burnell Farm. http://instagr.am/p/JkE1h/" />
<title>Beautiful "Speckled Calico" lima beans from my market, grown at Burnell Farm. http://instagr.am/p/JkE1h/</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Beautiful "Speckled Calico" lima beans from my market, grown at Burnell Farm. http://instagr.am/p/JkE1h/
</p>
<p class="created_at">
8/7/2011, 12:38:17 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100063184999821312">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100076076767789056" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Free three word band name idea for your frat party band: 'Schlitz Pabst Labatt' (Warning: you may get sued)" />
<title>Free three word band name idea for your frat party band: "Schlitz Pabst Labatt" (Warning: you may get sued)</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Free three word band name idea for your frat party band: "Schlitz Pabst Labatt" (Warning: you may get sued)
</p>
<p class="created_at">
8/7/2011, 1:29:30 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100076076767789056">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1000934124109037568" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @nycsouthpaw: I was reading about ICEs largest family detention facility—Karnes, which is run by a private contractor—and I happened up…" />
<title>RT @nycsouthpaw: I was reading about ICEs largest family detention facility—Karnes, which is run by a private contractor—and I happened up…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @nycsouthpaw: I was reading about ICEs largest family detention facility—Karnes, which is run by a private contractor—and I happened up…
</p>
<p class="created_at">
5/27/2018, 10:57:46 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1000934124109037568">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1001116737809666053" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @awoo_: A good &amp; accurate thread &amp; largely the experience of ppl *actually working* on this including my org. If all yr outrage is direc…" />
<title>RT @awoo_: A good &amp; accurate thread &amp; largely the experience of ppl *actually working* on this including my org. If all yr outrage is direc…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @awoo_: A good &amp; accurate thread &amp; largely the experience of ppl *actually working* on this including my org. If all yr outrage is direc…
</p>
<p class="created_at">
5/28/2018, 11:03:24 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1001116737809666053">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1001233930" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="*Now* it's a farming conference! http://twitpic.com/l9qc" />
<title>*Now* it's a farming conference! http://twitpic.com/l9qc</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
*Now* it's a farming conference! http://twitpic.com/l9qc
</p>
<p class="created_at">
11/11/2008, 6:48:53 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1001233930">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1001489428920131585" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @johnb78: A plaque on both their houses " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1001489428920131585-CobeTOXVYAAR1yq.jpg" />
<title>RT @johnb78: A plaque on both their houses </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @johnb78: A plaque on both their houses <div class="gallery"><ul><li><a href="../../tweets_media/1001489428920131585-CobeTOXVYAAR1yq.jpg"><img src="../../tweets_media/1001489428920131585-CobeTOXVYAAR1yq.jpg"></a></li><li><a href="../../tweets_media/1001489428920131585-CobeTsCUIAI9hP8.jpg"><img src="../../tweets_media/1001489428920131585-CobeTsCUIAI9hP8.jpg"></a></li></ul></div>
</p>
<p class="created_at">
5/29/2018, 11:44:21 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1001489428920131585">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1001520853" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Sleeping in a bunk house for the first time in ... ever? http://twitpic.com/lb0o" />
<title>Sleeping in a bunk house for the first time in ... ever? http://twitpic.com/lb0o</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Sleeping in a bunk house for the first time in ... ever? http://twitpic.com/lb0o
</p>
<p class="created_at">
11/11/2008, 10:34:29 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1001520853">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002224244179300352" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My current jam is the entire discography from Youth in a Roman Field, an eclectic quartet with sounds of Appalachia, cayenne pepper, and ghosts. Good stuff.
<a href='http://youthinaromanfield.com/'>http://youthinaromanfield.com/</a>" />
<title>My current jam is the entire discography from Youth in a Roman Field, an eclectic quartet with sounds of “Appalachia, cayenne pepper, and ghosts”. Good stuff.
<a href="http://youthinaromanfield.com/">http://youthinaromanfield.com/</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My current jam is the entire discography from Youth in a Roman Field, an eclectic quartet with sounds of “Appalachia, cayenne pepper, and ghosts”. Good stuff.<br><br><a href="http://youthinaromanfield.com/">http://youthinaromanfield.com/</a>
</p>
<p class="created_at">
5/31/2018, 12:24:14 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002224244179300352">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002328408934604800" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Sixteen straight days of rain, which is… <a href='https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk'>https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk</a>" />
<title>Sixteen straight days of rain, which is… <a href="https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk">https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Sixteen straight days of rain, which is… <a href="https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk">https://www.instagram.com/p/BjdcCvFljfJ/?utm_source=ig_twitter_share&igshid=lk3rd6j6msvk</a>
</p>
<p class="created_at">
5/31/2018, 7:18:09 PM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002328408934604800">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002406453540478976" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Trolling level: expert. <a href='https://twitter.com/atdanwhite/status/1002263171837710337'>https://twitter.com/atdanwhite/status/1002263171837710337</a>" />
<title>Trolling level: expert. <a href="https://twitter.com/atdanwhite/status/1002263171837710337">https://twitter.com/atdanwhite/status/1002263171837710337</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Trolling level: expert. <a href="https://twitter.com/atdanwhite/status/1002263171837710337">https://twitter.com/atdanwhite/status/1002263171837710337</a>
</p>
<p class="created_at">
6/1/2018, 12:28:16 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002406453540478976">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002430704297406464" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="The thunder woke me up two hours ago and the lightning hasnt let up since. And judging by the radar, it wont let up for quite some time. Guess Ill be up a while. " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1002430704297406464-DelZaKVUYAA9SLa.jpg" />
<title>The thunder woke me up two hours ago and the lightning hasnt let up since. And judging by the radar, it wont let up for quite some time. Guess Ill be up a while. </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
The thunder woke me up two hours ago and the lightning hasnt let up since. And judging by the radar, it wont let up for quite some time. Guess Ill be up a while. <div class="gallery"><ul><li><a href="../../tweets_media/1002430704297406464-DelZaKVUYAA9SLa.jpg"><img src="../../tweets_media/1002430704297406464-DelZaKVUYAA9SLa.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/1/2018, 2:04:38 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002430704297406464">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100243544530354176" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Did you know? So long as less than half the food you produce tests positive for salmonella, it's still legal to sell! http://is.gd/gHFpo9" />
<title>Did you know? So long as less than half the food you produce tests positive for salmonella, it's still legal to sell! http://is.gd/gHFpo9</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Did you know? So long as less than half the food you produce tests positive for salmonella, it's still legal to sell! http://is.gd/gHFpo9
</p>
<p class="created_at">
8/7/2011, 12:34:58 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 1</p>
<a class="permalink" href="../100243544530354176">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10025870930" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="A new children's classic: 'Goodnight Forest Moon' http://www.dzignspace.com/goodnight/ /via @jnonfiction" />
<title>A new children's classic: "Goodnight Forest Moon" http://www.dzignspace.com/goodnight/ /via @jnonfiction</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
A new children's classic: "Goodnight Forest Moon" http://www.dzignspace.com/goodnight/ /via @jnonfiction
</p>
<p class="created_at">
3/5/2010, 9:22:19 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10025870930">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002650804858310656" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My thoughts exactly, crass weather app. " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1002650804858310656-DeohlqfVMAAyKoe.jpg" />
<title>My thoughts exactly, crass weather app. </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My thoughts exactly, crass weather app. <div class="gallery"><ul><li><a href="../../tweets_media/1002650804858310656-DeohlqfVMAAyKoe.jpg"><img src="../../tweets_media/1002650804858310656-DeohlqfVMAAyKoe.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/1/2018, 4:39:14 PM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002650804858310656">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002685139695165443" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @iinteractive: Happy Friday! Infinity is proud to have once again partnered with The Perl Conference to produce a mobile app for TPC att…" />
<title>RT @iinteractive: Happy Friday! Infinity is proud to have once again partnered with The Perl Conference to produce a mobile app for TPC att…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @iinteractive: Happy Friday! Infinity is proud to have once again partnered with The Perl Conference to produce a mobile app for TPC att…
</p>
<p class="created_at">
6/1/2018, 6:55:40 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002685139695165443">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100281767281442816" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="In the cupboard, organizing my haggis. #notaeuphamism http://twitpic.com/62kswo" />
<title>In the cupboard, organizing my haggis. #notaeuphamism http://twitpic.com/62kswo</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
In the cupboard, organizing my haggis. #notaeuphamism http://twitpic.com/62kswo
</p>
<p class="created_at">
8/7/2011, 3:06:51 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100281767281442816">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1002960362" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I've spent the last half hour driving a mile. I love that." />
<title>I've spent the last half hour driving a mile. I love that.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I've spent the last half hour driving a mile. I love that.
</p>
<p class="created_at">
11/12/2008, 6:53:41 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1002960362">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100296433407762432" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My hair and I once had an art showing. <a href='http://yfrog.com/kjsxuovj'>http://yfrog.com/kjsxuovj</a>" />
<title>My hair and I once had an art showing. <a href="http://yfrog.com/kjsxuovj">http://yfrog.com/kjsxuovj</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My hair and I once had an art showing. <a href="http://yfrog.com/kjsxuovj">http://yfrog.com/kjsxuovj</a>
</p>
<p class="created_at">
8/7/2011, 4:05:07 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100296433407762432">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100330301519175681" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Dow futures fell 300 points in the first minute of trading. It's going to be a wild day tomorrow. The circuit breakers: http://is.gd/uwT4mw" />
<title>Dow futures fell 300 points in the first minute of trading. It's going to be a wild day tomorrow. The circuit breakers: http://is.gd/uwT4mw</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Dow futures fell 300 points in the first minute of trading. It's going to be a wild day tomorrow. The circuit breakers: http://is.gd/uwT4mw
</p>
<p class="created_at">
8/7/2011, 6:19:42 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 1</p>
<a class="permalink" href="../100330301519175681">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1003682226322763778" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Worst cover of “Nothing But Flowers” ever. <a href='https://twitter.com/NB_Chris/status/1003621686959276034'>https://twitter.com/NB_Chris/status/1003621686959276034</a>" />
<title>Worst cover of “Nothing But Flowers” ever. <a href="https://twitter.com/NB_Chris/status/1003621686959276034">https://twitter.com/NB_Chris/status/1003621686959276034</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Worst cover of “Nothing But Flowers” ever. <a href="https://twitter.com/NB_Chris/status/1003621686959276034">https://twitter.com/NB_Chris/status/1003621686959276034</a>
</p>
<p class="created_at">
6/4/2018, 12:57:44 PM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1003682226322763778">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004190884479586304" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @lukedones: Every once in a while I remember that the first minor planet with a retrograde orbit is called Dioretsa, which is 'asteroid'…" />
<title>RT @lukedones: Every once in a while I remember that the first minor planet with a retrograde orbit is called Dioretsa, which is 'asteroid'…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @lukedones: Every once in a while I remember that the first minor planet with a retrograde orbit is called Dioretsa, which is 'asteroid'…
</p>
<p class="created_at">
6/5/2018, 10:38:58 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1004190884479586304">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100422311626289153" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @mikeindustries Wow, the photo of Michele Bachmann on this week's Newsweek is downright scary: http://bit.ly/p2REDC" />
<title>RT @mikeindustries Wow, the photo of Michele Bachmann on this week's Newsweek is downright scary: http://bit.ly/p2REDC</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @mikeindustries Wow, the photo of Michele Bachmann on this week's Newsweek is downright scary: http://bit.ly/p2REDC
</p>
<p class="created_at">
8/8/2011, 12:25:19 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100422311626289153">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004251655" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My virtual machine is still converting, so I haven't actually used it yet, but it's clear the Parallels team spent good money on graphics." />
<title>My virtual machine is still converting, so I haven't actually used it yet, but it's clear the Parallels team spent good money on graphics.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My virtual machine is still converting, so I haven't actually used it yet, but it's clear the Parallels team spent good money on graphics.
</p>
<p class="created_at">
11/13/2008, 1:36:35 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1004251655">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004464907205693441" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Ralph Bakshi has signed original cells from his Lord of the Rings adaptation up on eBay for reasonable prices. <a href='https://twitter.com/ralphbakshi/status/1004425744011759616'>https://twitter.com/ralphbakshi/status/1004425744011759616</a>" />
<title>Ralph Bakshi has signed original cells from his Lord of the Rings adaptation up on eBay for reasonable prices. <a href="https://twitter.com/ralphbakshi/status/1004425744011759616">https://twitter.com/ralphbakshi/status/1004425744011759616</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Ralph Bakshi has signed original cells from his Lord of the Rings adaptation up on eBay for reasonable prices. <a href="https://twitter.com/ralphbakshi/status/1004425744011759616">https://twitter.com/ralphbakshi/status/1004425744011759616</a>
</p>
<p class="created_at">
6/6/2018, 4:47:50 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1004464907205693441">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004526488564137984" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @LuBellWoo: Today I learned about the Cookiecutter Shark. (Also known as the Cigar Shark!) <a href='https://en.wikipedia.org/wiki/Cookiecutter_shark'>https://en.wikipedia.org/wiki/Cookiecutter_shark</a> https://t.co/pEWTIJAZ…" />
<title>RT @LuBellWoo: Today I learned about the Cookiecutter Shark. (Also known as the Cigar Shark!) <a href="https://en.wikipedia.org/wiki/Cookiecutter_shark">https://en.wikipedia.org/wiki/Cookiecutter_shark</a> https://t.co/pEWTIJAZ…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @LuBellWoo: Today I learned about the Cookiecutter Shark. (Also known as the Cigar Shark!) <a href="https://en.wikipedia.org/wiki/Cookiecutter_shark">https://en.wikipedia.org/wiki/Cookiecutter_shark</a> https://t.co/pEWTIJAZ…
</p>
<p class="created_at">
6/6/2018, 8:52:32 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1004526488564137984">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004688100310880256" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @kyalbr: This country is a horror movie. " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1004688100310880256-DfDHj5xVQAAM_lJ.jpg" />
<title>RT @kyalbr: This country is a horror movie. </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @kyalbr: This country is a horror movie. <div class="gallery"><ul><li><a href="../../tweets_media/1004688100310880256-DfDHj5xVQAAM_lJ.jpg"><img src="../../tweets_media/1004688100310880256-DfDHj5xVQAAM_lJ.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/7/2018, 7:34:43 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1004688100310880256">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1004924787704193027" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="“This Dothan farmer's market is virtual, but the food is real
I think this is my favorite headline about a small community using my software to enhance their local food system. <a href='http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html'>http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html</a>" />
<title>“This Dothan farmer's market is virtual, but the food is real”
I think this is my favorite headline about a small community using my software to enhance their local food system. <a href="http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html">http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
“This Dothan farmer's market is virtual, but the food is real”<br><br>I think this is my favorite headline about a small community using my software to enhance their local food system. <a href="http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html">http://www.dothaneagle.com/news/local/this-dothan-farmer-s-market-is-virtual-but-the-food/article_12298988-6a9f-11e8-b943-c79bb7955ae8.html</a>
</p>
<p class="created_at">
6/7/2018, 11:15:14 PM
</p>
<p class="favorite_count">Favs: 3</p>
<p class="retweet_count">Retweets: 1</p>
<a class="permalink" href="../1004924787704193027">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10050880270" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="New Dyson vacuum arrived from Woot. When I turned it on for the first time, enough pet hair to make two cats materialized in the chamber." />
<title>New Dyson vacuum arrived from Woot. When I turned it on for the first time, enough pet hair to make two cats materialized in the chamber.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
New Dyson vacuum arrived from Woot. When I turned it on for the first time, enough pet hair to make two cats materialized in the chamber.
</p>
<p class="created_at">
3/5/2010, 7:53:39 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10050880270">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005133642165817345" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @alissacaliente: Because of the nature of the news today, I'm probably going to log off for a bit, but first I wanted to say a few thing…" />
<title>RT @alissacaliente: Because of the nature of the news today, I'm probably going to log off for a bit, but first I wanted to say a few thing…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @alissacaliente: Because of the nature of the news today, I'm probably going to log off for a bit, but first I wanted to say a few thing…
</p>
<p class="created_at">
6/8/2018, 1:05:09 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005133642165817345">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005134756554690562" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @anamariecox: It is amazing how many of these stories turn on someone simply asking with sincerity, 'are you ok?' That one question -- t…" />
<title>RT @anamariecox: It is amazing how many of these stories turn on someone simply asking with sincerity, "are you ok?" That one question -- t…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @anamariecox: It is amazing how many of these stories turn on someone simply asking with sincerity, "are you ok?" That one question -- t…
</p>
<p class="created_at">
6/8/2018, 1:09:35 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005134756554690562">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005284562614644736" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I was a suicidal 4th grader. I tried to seek help but didnt know how — I was only eight years old. If I wanted to live, I had to teach myself how to protect myself from myself. Its worked well enough for forty years, but its a constant task. #itschaosbekind #nomorehiding #imok" />
<title>I was a suicidal 4th grader. I tried to seek help but didnt know how — I was only eight years old. If I wanted to live, I had to teach myself how to protect myself from myself. Its worked well enough for forty years, but its a constant task. #itschaosbekind #nomorehiding #imok</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I was a suicidal 4th grader. I tried to seek help but didnt know how — I was only eight years old. If I wanted to live, I had to teach myself how to protect myself from myself. Its worked well enough for forty years, but its a constant task. #itschaosbekind #nomorehiding #imok
</p>
<p class="created_at">
6/8/2018, 11:04:51 PM
</p>
<p class="favorite_count">Favs: 13</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005284562614644736">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100542387159437312" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Attention media: In a few weeks, I'll no longer be eligible for your '40 Under 40' lists. Just so you know." />
<title>Attention media: In a few weeks, I'll no longer be eligible for your "40 Under 40" lists. Just so you know.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Attention media: In a few weeks, I'll no longer be eligible for your "40 Under 40" lists. Just so you know.
</p>
<p class="created_at">
8/8/2011, 8:22:27 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100542387159437312">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100554954753843201" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Holy crap! RT @nika7k: CRAZY video of Great East Japan earthquake and tsunami form INSIDE a car <a href='http://bit.ly/moELuS'>http://bit.ly/moELuS</a> status of driver unknown" />
<title>Holy crap! RT @nika7k: CRAZY video of Great East Japan earthquake and tsunami form INSIDE a car <a href="http://bit.ly/moELuS">http://bit.ly/moELuS</a> status of driver unknown</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Holy crap! RT @nika7k: CRAZY video of Great East Japan earthquake and tsunami form INSIDE a car <a href="http://bit.ly/moELuS">http://bit.ly/moELuS</a> status of driver unknown
</p>
<p class="created_at">
8/8/2011, 9:12:24 AM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100554954753843201">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005621894987513856" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @solikebasically: The last time I tried to kill myself, I drove aimlessly on the freeway until I decided I'd drive 30 minutes south to m…" />
<title>RT @solikebasically: The last time I tried to kill myself, I drove aimlessly on the freeway until I decided I'd drive 30 minutes south to m…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @solikebasically: The last time I tried to kill myself, I drove aimlessly on the freeway until I decided I'd drive 30 minutes south to m…
</p>
<p class="created_at">
6/9/2018, 9:25:17 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005621894987513856">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005636408902594561" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @goldengateblond: I've seen lots of 'edited' versions of the G7 photo today, but this one is by far my favorite. (h/t @adchick22) https:…" />
<title>RT @goldengateblond: I've seen lots of "edited" versions of the G7 photo today, but this one is by far my favorite. (h/t @adchick22) https:…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @goldengateblond: I've seen lots of "edited" versions of the G7 photo today, but this one is by far my favorite. (h/t @adchick22) https:…
</p>
<p class="created_at">
6/9/2018, 10:22:58 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005636408902594561">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005651182" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="The UPS man just brought me the giant head of Stewie Griffin." />
<title>The UPS man just brought me the giant head of Stewie Griffin.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
The UPS man just brought me the giant head of Stewie Griffin.
</p>
<p class="created_at">
11/14/2008, 11:03:49 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005651182">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100567239098499073" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Today's band recommendation: Apocalypse Five & Dime <a href='http://www.apocalypsefiveanddime.com/'>http://www.apocalypsefiveanddime.com/</a> (Especially for all you Scarring Party fans)" />
<title>Today's band recommendation: Apocalypse Five & Dime <a href="http://www.apocalypsefiveanddime.com/">http://www.apocalypsefiveanddime.com/</a> (Especially for all you Scarring Party fans)</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Today's band recommendation: Apocalypse Five & Dime <a href="http://www.apocalypsefiveanddime.com/">http://www.apocalypsefiveanddime.com/</a> (Especially for all you Scarring Party fans)
</p>
<p class="created_at">
8/8/2011, 10:01:12 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100567239098499073">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1005832180445085697" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Tomorrow night Im driving three hours round trip to watch a 90 minute Doctor Who story from the 80s (Tom Bakers “Genesis of the Daleks”) on the big screen, and its going to be absolutely worth it." />
<title>Tomorrow night Im driving three hours round trip to watch a 90 minute Doctor Who story from the 80s (Tom Bakers “Genesis of the Daleks”) on the big screen, and its going to be absolutely worth it.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Tomorrow night Im driving three hours round trip to watch a 90 minute Doctor Who story from the 80s (Tom Bakers “Genesis of the Daleks”) on the big screen, and its going to be absolutely worth it.
</p>
<p class="created_at">
6/10/2018, 11:20:53 AM
</p>
<p class="favorite_count">Favs: 2</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1005832180445085697">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100585710159020033" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @hoopyfrood: Johnny Cashs To-Do List
<a href='http://bit.ly/norD9o'>http://bit.ly/norD9o</a>" />
<title>RT @hoopyfrood: Johnny Cashs To-Do List
<a href="http://bit.ly/norD9o">http://bit.ly/norD9o</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @hoopyfrood: Johnny Cashs To-Do List<br><a href="http://bit.ly/norD9o">http://bit.ly/norD9o</a>
</p>
<p class="created_at">
8/8/2011, 11:14:36 AM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100585710159020033">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100600587619540992" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Congrats, @lukew! 'Big news. @twitter just acquired our company @bagchk <a href='http://bit.ly/quPdZU'>http://bit.ly/quPdZU</a>”" />
<title>Congrats, @lukew! "Big news. @twitter just acquired our company @bagchk <a href="http://bit.ly/quPdZU">http://bit.ly/quPdZU</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Congrats, @lukew! "Big news. @twitter just acquired our company @bagchk <a href="http://bit.ly/quPdZU">http://bit.ly/quPdZU</a>
</p>
<p class="created_at">
8/8/2011, 12:13:43 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100600587619540992">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1006243296224727040" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @BethesdaStudios: Alexa! Play #Skyrim.
Introducing…. Skyrim: Very Special Edition, where you can eat ALL the cheese. Watch the trailer…" />
<title>RT @BethesdaStudios: Alexa! Play #Skyrim.
Introducing…. Skyrim: Very Special Edition, where you can eat ALL the cheese. Watch the trailer…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @BethesdaStudios: Alexa! Play #Skyrim. <br><br>Introducing…. Skyrim: Very Special Edition, where you can eat ALL the cheese. Watch the trailer…
</p>
<p class="created_at">
6/11/2018, 2:34:31 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1006243296224727040">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1006281048852914176" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Looked out my window and legit thought my garage was on fire. But it was just that the sun came out after an intense thunderstorm, and steam was billowing off the roof. #muggy" />
<title>Looked out my window and legit thought my garage was on fire. But it was just that the sun came out after an intense thunderstorm, and steam was billowing off the roof. #muggy</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Looked out my window and legit thought my garage was on fire. But it was just that the sun came out after an intense thunderstorm, and steam was billowing off the roof. #muggy
</p>
<p class="created_at">
6/11/2018, 5:04:32 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1006281048852914176">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100643729144152064" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Panic on the streets of London, panic on the streets of Birmingham.
As if I didn't already feel like I was living inside Morrissey lyrics." />
<title>Panic on the streets of London, panic on the streets of Birmingham.
As if I didn't already feel like I was living inside Morrissey lyrics.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Panic on the streets of London, panic on the streets of Birmingham.<br><br>As if I didn't already feel like I was living inside Morrissey lyrics.
</p>
<p class="created_at">
8/8/2011, 3:05:09 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100643729144152064">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10067917009846272" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Nothing like Paul Simon for getting the melancholy on.
Everybody loves the sound of a train in the distance Everybody thinks it's true" />
<title>Nothing like Paul Simon for getting the melancholy on.
Everybody loves the sound of a train in the distance Everybody thinks it's true</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Nothing like Paul Simon for getting the melancholy on.<br><br>Everybody loves the sound of a train in the distance<br>Everybody thinks it's true
</p>
<p class="created_at">
12/1/2010, 3:29:13 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10067917009846272">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1007410877035786240" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @hallublin: What is happening right now <a href='https://twitter.com/WalshFreedom/status/1007346194845224961'>https://twitter.com/WalshFreedom/status/1007346194845224961</a>" />
<title>RT @hallublin: What is happening right now <a href="https://twitter.com/WalshFreedom/status/1007346194845224961">https://twitter.com/WalshFreedom/status/1007346194845224961</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @hallublin: What is happening right now <a href="https://twitter.com/WalshFreedom/status/1007346194845224961">https://twitter.com/WalshFreedom/status/1007346194845224961</a>
</p>
<p class="created_at">
6/14/2018, 7:54:04 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1007410877035786240">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1007420562686214145" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @cherylferraro: New type of photosynthesis discovered - The #discovery changes our understanding of the basic mechanism of photosynthesi…" />
<title>RT @cherylferraro: New type of photosynthesis discovered - The #discovery changes our understanding of the basic mechanism of photosynthesi…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @cherylferraro: New type of photosynthesis discovered - The #discovery changes our understanding of the basic mechanism of photosynthesi…
</p>
<p class="created_at">
6/14/2018, 8:32:33 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1007420562686214145">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1007421777981661184" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Back in the GWB presidency, I bought the domain inmyname dot us so I could document all the morally objectionable things being done by my government. I never got around to that project.
I still have the domain but doing it now would push me into a terminal despair spiral." />
<title>Back in the GWB presidency, I bought the domain inmyname dot us so I could document all the morally objectionable things being done by my government. I never got around to that project.
I still have the domain but doing it now would push me into a terminal despair spiral.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Back in the GWB presidency, I bought the domain inmyname dot us so I could document all the morally objectionable things being done by my government. I never got around to that project. <br><br>I still have the domain but doing it now would push me into a terminal despair spiral.
</p>
<p class="created_at">
6/14/2018, 8:37:23 PM
</p>
<p class="favorite_count">Favs: 11</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1007421777981661184">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10077754989" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="'Thumbs up to the people at Enid Farmers Market (Oklahoma) who are branching out on the Internet.' http://is.gd/9P7pT" />
<title>"Thumbs up to the people at Enid Farmers Market (Oklahoma) who are branching out on the Internet." http://is.gd/9P7pT</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
"Thumbs up to the people at Enid Farmers Market (Oklahoma) who are branching out on the Internet." http://is.gd/9P7pT
</p>
<p class="created_at">
3/6/2010, 10:35:20 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10077754989">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1007856621274484736" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="BRB. Pushing it real good." />
<title>BRB. Pushing it real good.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
BRB. Pushing it real good.
</p>
<p class="created_at">
6/16/2018, 1:25:18 AM
</p>
<p class="favorite_count">Favs: 3</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1007856621274484736">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10078971873" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Vivian has been holding her fingers like this for a week straight. Because she's a T-Rex, don't you know. http://gdzl.la/7HKfTZ" />
<title>Vivian has been holding her fingers like this for a week straight. Because she's a T-Rex, don't you know. http://gdzl.la/7HKfTZ</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Vivian has been holding her fingers like this for a week straight. Because she's a T-Rex, don't you know. http://gdzl.la/7HKfTZ
</p>
<p class="created_at">
3/6/2010, 11:06:23 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10078971873">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10083705235" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="At the Variety Playhouse in Atlanta with Viv for the TMBG family show." />
<title>At the Variety Playhouse in Atlanta with Viv for the TMBG family show.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
At the Variety Playhouse in Atlanta with Viv for the TMBG family show.
</p>
<p class="created_at">
3/6/2010, 1:11:40 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10083705235">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1008470805" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Wait, the FDIC is insuring retail gift cards now? That's ... That's just crazy." />
<title>Wait, the FDIC is insuring retail gift cards now? That's ... That's just crazy.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Wait, the FDIC is insuring retail gift cards now? That's ... That's just crazy.
</p>
<p class="created_at">
11/16/2008, 1:24:12 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1008470805">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10084886665" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="In case you thought I was exaggerating about the T-Rex arms: http://gdzl.la/7HR2MW" />
<title>In case you thought I was exaggerating about the T-Rex arms: http://gdzl.la/7HR2MW</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
In case you thought I was exaggerating about the T-Rex arms: http://gdzl.la/7HR2MW
</p>
<p class="created_at">
3/6/2010, 1:44:41 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10084886665">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10087922816524288" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Dear Google, I will happily let you buy locallygrown.net for a mere 1/1000th of what you've offered Groupon. Call me. You've got my number." />
<title>Dear Google, I will happily let you buy locallygrown.net for a mere 1/1000th of what you've offered Groupon. Call me. You've got my number.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Dear Google, I will happily let you buy locallygrown.net for a mere 1/1000th of what you've offered Groupon. Call me. You've got my number.
</p>
<p class="created_at">
12/1/2010, 4:48:42 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10087922816524288">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10089994409" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="'I don't want to be a pirate girl. I am a pirate T-Rex!' Alrighty then." />
<title>"I don't want to be a pirate girl. I am a pirate T-Rex!" Alrighty then.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
"I don't want to be a pirate girl. I am a pirate T-Rex!" Alrighty then.
</p>
<p class="created_at">
3/6/2010, 4:17:08 PM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10089994409">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10090352310" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="The Turkish fellow complemented me on my pronounciation and wants me to keep an eye out for a downtown Athens location for his restaurant." />
<title>The Turkish fellow complemented me on my pronounciation and wants me to keep an eye out for a downtown Athens location for his restaurant.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
The Turkish fellow complemented me on my pronounciation and wants me to keep an eye out for a downtown Athens location for his restaurant.
</p>
<p class="created_at">
3/6/2010, 4:28:29 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10090352310">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009135349795295233" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I held off for a while reading this thread. Dont make the same mistake I did. <a href='https://twitter.com/BryantD/status/1008728548754898947'>https://twitter.com/BryantD/status/1008728548754898947</a>" />
<title>I held off for a while reading this thread. Dont make the same mistake I did. <a href="https://twitter.com/BryantD/status/1008728548754898947">https://twitter.com/BryantD/status/1008728548754898947</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I held off for a while reading this thread. Dont make the same mistake I did. <a href="https://twitter.com/BryantD/status/1008728548754898947">https://twitter.com/BryantD/status/1008728548754898947</a>
</p>
<p class="created_at">
6/19/2018, 2:06:30 PM
</p>
<p class="favorite_count">Favs: 2</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009135349795295233">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009271371958976512" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I just realized that there are now nearly *a billion* twitter accounts for every human alive on the planet today. Thats insane. " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1009271371958976512-DgGm9VtXkAAy4cN.jpg" />
<title>I just realized that there are now nearly *a billion* twitter accounts for every human alive on the planet today. Thats insane. </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I just realized that there are now nearly *a billion* twitter accounts for every human alive on the planet today. Thats insane. <div class="gallery"><ul><li><a href="../../tweets_media/1009271371958976512-DgGm9VtXkAAy4cN.jpg"><img src="../../tweets_media/1009271371958976512-DgGm9VtXkAAy4cN.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/19/2018, 11:07:01 PM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009271371958976512">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009536271847485440" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Afternoon prickly pear gose and an apricot danish. #thisismyoffice #remotework #infinityinteractive " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1009536271847485440-DgKX4rPW0AEhFw0.jpg" />
<title>Afternoon prickly pear gose and an apricot danish. #thisismyoffice #remotework #infinityinteractive </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Afternoon prickly pear gose and an apricot danish. #thisismyoffice #remotework #infinityinteractive <div class="gallery"><ul><li><a href="../../tweets_media/1009536271847485440-DgKX4rPW0AEhFw0.jpg"><img src="../../tweets_media/1009536271847485440-DgKX4rPW0AEhFw0.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/20/2018, 4:39:38 PM
</p>
<p class="favorite_count">Favs: 2</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009536271847485440">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100954301987430400" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Photos of the London Riots are at today's The Big Picture at Boston.com: <a href='http://www.boston.com/bigpicture/2011/08/london_riots.html'>http://www.boston.com/bigpicture/2011/08/london_riots.html</a>" />
<title>Photos of the London Riots are at today's The Big Picture at Boston.com: <a href="http://www.boston.com/bigpicture/2011/08/london_riots.html">http://www.boston.com/bigpicture/2011/08/london_riots.html</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Photos of the London Riots are at today's The Big Picture at Boston.com: <a href="http://www.boston.com/bigpicture/2011/08/london_riots.html">http://www.boston.com/bigpicture/2011/08/london_riots.html</a>
</p>
<p class="created_at">
8/9/2011, 11:39:15 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100954301987430400">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100956529368379393" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @vpartington: Just got an email from Amazon AWS saying they lost some of my data. I'm OK with an outage now and then but this really ..." />
<title>RT @vpartington: Just got an email from Amazon AWS saying they lost some of my data. I'm OK with an outage now and then but this really ...</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @vpartington: Just got an email from Amazon AWS saying they lost some of my data. I'm OK with an outage now and then but this really ...
</p>
<p class="created_at">
8/9/2011, 11:48:06 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100956529368379393">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009638670004117504" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @YuckyTom: her: whatre u thinkin about?
me: the time encyclopedia brown knew a civil war sword was a fake because it was engraved “th…" />
<title>RT @YuckyTom: her: whatre u thinkin about?
me: the time encyclopedia brown knew a civil war sword was a fake because it was engraved “th…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @YuckyTom: her: whatre u thinkin about?<br><br>me: the time encyclopedia brown knew a civil war sword was a fake because it was engraved “th…
</p>
<p class="created_at">
6/20/2018, 11:26:31 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009638670004117504">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009647148869345280" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @jeffzentner: An average Twitter day for me in 2018
“Hey check out this new book that came out!!”
“Look at my puppy floofer boofer sil…" />
<title>RT @jeffzentner: An average Twitter day for me in 2018
“Hey check out this new book that came out!!”
“Look at my puppy floofer boofer sil…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @jeffzentner: An average Twitter day for me in 2018<br><br>“Hey check out this new book that came out!!”<br><br>“Look at my puppy floofer boofer sil…
</p>
<p class="created_at">
6/21/2018, 12:00:13 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009647148869345280">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100967834871529473" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @davidpaulyoung: Who wants to take on Gmail? @jasonh and I need three talented developers to help us." />
<title>RT @davidpaulyoung: Who wants to take on Gmail? @jasonh and I need three talented developers to help us.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @davidpaulyoung: Who wants to take on Gmail? @jasonh and I need three talented developers to help us.
</p>
<p class="created_at">
8/9/2011, 12:33:02 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100967834871529473">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009692204" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My cold has reached the phlegmy stage. Working at a the coffee shop down the block to avoid infecting my co-workers. (Strangers, though, ok)" />
<title>My cold has reached the phlegmy stage. Working at a the coffee shop down the block to avoid infecting my co-workers. (Strangers, though, ok)</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My cold has reached the phlegmy stage. Working at a the coffee shop down the block to avoid infecting my co-workers. (Strangers, though, ok)
</p>
<p class="created_at">
11/17/2008, 10:19:54 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009692204">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10096996051" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Just put a charge on my credit card that's more than my last car cost. /me mutters 'it's for the business, it's for the business'" />
<title>Just put a charge on my credit card that's more than my last car cost. /me mutters "it's for the business, it's for the business"</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Just put a charge on my credit card that's more than my last car cost. /me mutters "it's for the business, it's for the business"
</p>
<p class="created_at">
3/6/2010, 7:43:10 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10096996051">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/100970757978460161" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I have @magentatardis to thank for implanting this glorious earworm. 'I'm a rabbit so my feet are super lucky' <a href='http://woodsyfriends.bandcamp.com/'>http://woodsyfriends.bandcamp.com/</a>" />
<title>I have @magentatardis to thank for implanting this glorious earworm. "I'm a rabbit so my feet are super lucky" <a href="http://woodsyfriends.bandcamp.com/">http://woodsyfriends.bandcamp.com/</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I have @magentatardis to thank for implanting this glorious earworm. "I'm a rabbit so my feet are super lucky" <a href="http://woodsyfriends.bandcamp.com/">http://woodsyfriends.bandcamp.com/</a>
</p>
<p class="created_at">
8/9/2011, 12:44:39 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../100970757978460161">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009787400" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Listening to a Splendid Table story about eating mesquite pods, and their potential use in gluten free baking. Must investigate further." />
<title>Listening to a Splendid Table story about eating mesquite pods, and their potential use in gluten free baking. Must investigate further.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Listening to a Splendid Table story about eating mesquite pods, and their potential use in gluten free baking. Must investigate further.
</p>
<p class="created_at">
11/17/2008, 11:20:55 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009787400">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009811953831858178" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Who would have thought a comic about a cartoonist named Jon Arbuckle who draws comics about his lasagna-loving cat would be so touching?
Part One: <a href='http://galesaur.com/portfolio/jon/'>http://galesaur.com/portfolio/jon/</a>
Part Two: <a href='http://galesaur.com/portfolio/jon-2/'>http://galesaur.com/portfolio/jon-2/</a>
MeFi discussion: <a href='https://www.metafilter.com/174836/With-Minimal-Lasagna'>https://www.metafilter.com/174836/With-Minimal-Lasagna</a>" />
<title>Who would have thought a comic about a cartoonist named Jon Arbuckle who draws comics about his lasagna-loving cat would be so touching?
Part One: <a href="http://galesaur.com/portfolio/jon/">http://galesaur.com/portfolio/jon/</a>
Part Two: <a href="http://galesaur.com/portfolio/jon-2/">http://galesaur.com/portfolio/jon-2/</a>
MeFi discussion: <a href="https://www.metafilter.com/174836/With-Minimal-Lasagna">https://www.metafilter.com/174836/With-Minimal-Lasagna</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Who would have thought a comic about a cartoonist named Jon Arbuckle who draws comics about his lasagna-loving cat would be so touching?<br><br>Part One: <a href="http://galesaur.com/portfolio/jon/">http://galesaur.com/portfolio/jon/</a><br>Part Two: <a href="http://galesaur.com/portfolio/jon-2/">http://galesaur.com/portfolio/jon-2/</a><br>MeFi discussion: <a href="https://www.metafilter.com/174836/With-Minimal-Lasagna">https://www.metafilter.com/174836/With-Minimal-Lasagna</a>
</p>
<p class="created_at">
6/21/2018, 10:55:05 AM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009811953831858178">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009905719" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I've fallen off the wagon. It's not a problem, though, I can quit any time: http://tinyurl.com/6jqrwt" />
<title>I've fallen off the wagon. It's not a problem, though, I can quit any time: http://tinyurl.com/6jqrwt</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I've fallen off the wagon. It's not a problem, though, I can quit any time: http://tinyurl.com/6jqrwt
</p>
<p class="created_at">
11/17/2008, 12:37:18 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009905719">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009932265147850752" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @jeremiahtolbert: This cold civil war is starting to heat up, I fear. I figure one side being willing to put kids in concentration camps…" />
<title>RT @jeremiahtolbert: This cold civil war is starting to heat up, I fear. I figure one side being willing to put kids in concentration camps…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @jeremiahtolbert: This cold civil war is starting to heat up, I fear. I figure one side being willing to put kids in concentration camps…
</p>
<p class="created_at">
6/21/2018, 6:53:10 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009932265147850752">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1009998650276302848" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Hannah Gadsbys Netflix special “Nanette” is masterful, heartbreaking, empowering, and important. Please watch it, all the way to the end. Its only an hour." />
<title>Hannah Gadsbys Netflix special “Nanette” is masterful, heartbreaking, empowering, and important. Please watch it, all the way to the end. Its only an hour.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Hannah Gadsbys Netflix special “Nanette” is masterful, heartbreaking, empowering, and important. Please watch it, all the way to the end. Its only an hour.
</p>
<p class="created_at">
6/21/2018, 11:16:57 PM
</p>
<p class="favorite_count">Favs: 2</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1009998650276302848">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10100194792" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My representative was one of 13 who voted against a resolution that declared students deserve access to healthy food. http://is.gd/9R35U" />
<title>My representative was one of 13 who voted against a resolution that declared students deserve access to healthy food. http://is.gd/9R35U</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My representative was one of 13 who voted against a resolution that declared students deserve access to healthy food. http://is.gd/9R35U
</p>
<p class="created_at">
3/6/2010, 9:08:32 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 1</p>
<a class="permalink" href="../10100194792">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/101009413522980864" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Hey, all you Madison, WI friends o' mine: MC Frontalot is coming your way, and needs help: <a href='http://goo.gl/eugQe'>http://goo.gl/eugQe</a>" />
<title>Hey, all you Madison, WI friends o' mine: MC Frontalot is coming your way, and needs help: <a href="http://goo.gl/eugQe">http://goo.gl/eugQe</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Hey, all you Madison, WI friends o' mine: MC Frontalot is coming your way, and needs help: <a href="http://goo.gl/eugQe">http://goo.gl/eugQe</a>
</p>
<p class="created_at">
8/9/2011, 3:18:15 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../101009413522980864">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1010146583" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="'Developer of 1960s truck farm turns 89' (and produce now grown on the land is sold via a locallygrown.net market): http://is.gd/7SlY" />
<title>"Developer of 1960s truck farm turns 89" (and produce now grown on the land is sold via a locallygrown.net market): http://is.gd/7SlY</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
"Developer of 1960s truck farm turns 89" (and produce now grown on the land is sold via a locallygrown.net market): http://is.gd/7SlY
</p>
<p class="created_at">
11/17/2008, 3:21:25 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1010146583">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1010220888" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I thought the Star Trek movie was coming out at Christmas, but now it's May? There goes my holiday plans." />
<title>I thought the Star Trek movie was coming out at Christmas, but now it's May? There goes my holiday plans.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I thought the Star Trek movie was coming out at Christmas, but now it's May? There goes my holiday plans.
</p>
<p class="created_at">
11/17/2008, 4:13:36 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1010220888">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1010263920" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="An excellent animation from Japan's Ministry of Agriculture on 'Ensuring the Future of Food' that applies also to the USA: http://is.gd/7T0H" />
<title>An excellent animation from Japan's Ministry of Agriculture on "Ensuring the Future of Food" that applies also to the USA: http://is.gd/7T0H</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
An excellent animation from Japan's Ministry of Agriculture on "Ensuring the Future of Food" that applies also to the USA: http://is.gd/7T0H
</p>
<p class="created_at">
11/17/2008, 4:43:46 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1010263920">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1010266633020039170" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Seriously, though. I just randomly picked this comedy special for something light to watch before bed, and instead I got something Ill remember the rest of my days. Ill be a better person for it. I think you will, too. <a href='https://twitter.com/NetflixIsAJoke/status/1006189312176787458'>https://twitter.com/NetflixIsAJoke/status/1006189312176787458</a>" />
<title>Seriously, though. I just randomly picked this comedy special for something light to watch before bed, and instead I got something Ill remember the rest of my days. Ill be a better person for it. I think you will, too. <a href="https://twitter.com/NetflixIsAJoke/status/1006189312176787458">https://twitter.com/NetflixIsAJoke/status/1006189312176787458</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Seriously, though. I just randomly picked this comedy special for something light to watch before bed, and instead I got something Ill remember the rest of my days. Ill be a better person for it. I think you will, too. <a href="https://twitter.com/NetflixIsAJoke/status/1006189312176787458">https://twitter.com/NetflixIsAJoke/status/1006189312176787458</a>
</p>
<p class="created_at">
6/22/2018, 5:01:49 PM
</p>
<p class="favorite_count">Favs: 3</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1010266633020039170">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/101037457981702144" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Hop hop, I'm always jump jumping.
Zig zag, I'm always run running.
Long ears, I'm always listening.
Long ears, I can hear you coming." />
<title>Hop hop, I'm always jump jumping.
Zig zag, I'm always run running.
Long ears, I'm always listening.
Long ears, I can hear you coming.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Hop hop, I'm always jump jumping.<br>Zig zag, I'm always run running.<br>Long ears, I'm always listening.<br>Long ears, I can hear you coming.
</p>
<p class="created_at">
8/9/2011, 5:09:41 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../101037457981702144">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/10104804948836352" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My new favorite way to say goodbye: 'Yes, get thee to thine destiny! Godspeed!' http://is.gd/i49h1" />
<title>My new favorite way to say goodbye: "Yes, get thee to thine destiny! Godspeed!" http://is.gd/i49h1</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My new favorite way to say goodbye: "Yes, get thee to thine destiny! Godspeed!" http://is.gd/i49h1
</p>
<p class="created_at">
12/1/2010, 5:55:47 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../10104804948836352">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1010568689" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Uh oh. Civilization IV works great with the new version of Parallels." />
<title>Uh oh. Civilization IV works great with the new version of Parallels.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Uh oh. Civilization IV works great with the new version of Parallels.
</p>
<p class="created_at">
11/17/2008, 8:39:18 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1010568689">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/101060893110054914" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Man, do I love me some heirloom potatoes. http://twitpic.com/63mql1" />
<title>Man, do I love me some heirloom potatoes. http://twitpic.com/63mql1</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Man, do I love me some heirloom potatoes. http://twitpic.com/63mql1
</p>
<p class="created_at">
8/9/2011, 6:42:49 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../101060893110054914">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/101076933974036482" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Chicken and taters are ready. http://instagr.am/p/Jz9_B/" />
<title>Chicken and taters are ready. http://instagr.am/p/Jz9_B/</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Chicken and taters are ready. http://instagr.am/p/Jz9_B/
</p>
<p class="created_at">
8/9/2011, 7:46:33 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../101076933974036482">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011032736340078592" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @TorEkelandPC: My dad was tortured by the Gestapo for 4 days and thrown in a concentration camp for being in the Norwegian Resistance. G…" />
<title>RT @TorEkelandPC: My dad was tortured by the Gestapo for 4 days and thrown in a concentration camp for being in the Norwegian Resistance. G…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @TorEkelandPC: My dad was tortured by the Gestapo for 4 days and thrown in a concentration camp for being in the Norwegian Resistance. G…
</p>
<p class="created_at">
6/24/2018, 7:46:03 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011032736340078592">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011326087" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="'You are now 'Power#4' in game 'norm_mefi'. Welcome to the DPjudge.' Now I've done it." />
<title>"You are now 'Power#4' in game 'norm_mefi'. Welcome to the DPjudge." Now I've done it.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
"You are now 'Power#4' in game 'norm_mefi'. Welcome to the DPjudge." Now I've done it.
</p>
<p class="created_at">
11/18/2008, 10:06:43 AM
</p>
<p class="favorite_count">Favs: 1</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011326087">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011623597" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="Ok. rjdj is a totally cool iPhone app. It processes realtime sounds from the mic and creates ambient music from it through the headphones." />
<title>Ok. rjdj is a totally cool iPhone app. It processes realtime sounds from the mic and creates ambient music from it through the headphones.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
Ok. rjdj is a totally cool iPhone app. It processes realtime sounds from the mic and creates ambient music from it through the headphones.
</p>
<p class="created_at">
11/18/2008, 2:35:30 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011623597">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011626117621518336" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @RealTimeWWII: US Republican party announces new platform for its next Presidential bid: firm opposition to joining the war against Nazi…" />
<title>RT @RealTimeWWII: US Republican party announces new platform for its next Presidential bid: firm opposition to joining the war against Nazi…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @RealTimeWWII: US Republican party announces new platform for its next Presidential bid: firm opposition to joining the war against Nazi…
</p>
<p class="created_at">
6/26/2018, 11:03:56 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011626117621518336">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011630092953497600" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @thehill: JUST IN: Ocean science agency may remove climate change from agency mission, replace it with trade deficit https://t.co/yjALuq…" />
<title>RT @thehill: JUST IN: Ocean science agency may remove climate change from agency mission, replace it with trade deficit https://t.co/yjALuq…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @thehill: JUST IN: Ocean science agency may remove climate change from agency mission, replace it with trade deficit https://t.co/yjALuq…
</p>
<p class="created_at">
6/26/2018, 11:19:43 AM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011630092953497600">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011684945419493376" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @AmirSariaslan: 😂 " />
<meta property="og:image" content="https://blog.kestrelsnest.social/mytweets/ewagoner/tweets_media/1011684945419493376-DghxSu9XUAAhhcz.jpg" />
<title>RT @AmirSariaslan: 😂 </title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @AmirSariaslan: 😂 <div class="gallery"><ul><li><a href="../../tweets_media/1011684945419493376-DghxSu9XUAAhhcz.jpg"><img src="../../tweets_media/1011684945419493376-DghxSu9XUAAhhcz.jpg"></a></li></ul></div>
</p>
<p class="created_at">
6/26/2018, 2:57:41 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011684945419493376">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011740809081876481" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="I love findings like this that show how connected our world has been, well before many people think. <a href='https://twitter.com/katemond/status/1011313767769141249'>https://twitter.com/katemond/status/1011313767769141249</a>" />
<title>I love findings like this that show how connected our world has been, well before many people think. <a href="https://twitter.com/katemond/status/1011313767769141249">https://twitter.com/katemond/status/1011313767769141249</a></title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
I love findings like this that show how connected our world has been, well before many people think. <a href="https://twitter.com/katemond/status/1011313767769141249">https://twitter.com/katemond/status/1011313767769141249</a>
</p>
<p class="created_at">
6/26/2018, 6:39:40 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011740809081876481">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011765898" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="My podcast backlog has fallen to under 4 gigs from a high of nine. One good thing about road trips, I guess." />
<title>My podcast backlog has fallen to under 4 gigs from a high of nine. One good thing about road trips, I guess.</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
My podcast backlog has fallen to under 4 gigs from a high of nine. One good thing about road trips, I guess.
</p>
<p class="created_at">
11/18/2008, 4:08:09 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011765898">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://blog.kestrelsnest.social/mytweets/ewagoner/status/1011778410635497474" />
<meta property="og:title" content="Eric Wagoner on Twitter (archived)" />
<meta property="og:description" content="RT @RobertMaguire_: Here's Attorney General Jeff Sessions making a joke today about separating families (to laughter and applause) https://…" />
<title>RT @RobertMaguire_: Here's Attorney General Jeff Sessions making a joke today about separating families (to laughter and applause) https://…</title>
<link rel="stylesheet" href="../../../styles.css">
</head>
<body>
<div class="wrapper">
<div class="flex-wrap">
<a href="../../../">
<p>&larr; @ewagoner Twitter archive</p>
</a>
<article class="tweet " id="main">
<p class="display_name">
Eric Wagoner
</p>
<p class="user_name">
@ewagoner
</p>
<p class="full_text">
RT @RobertMaguire_: Here's Attorney General Jeff Sessions making a joke today about separating families (to laughter and applause) https://…
</p>
<p class="created_at">
6/26/2018, 9:09:05 PM
</p>
<p class="favorite_count">Favs: 0</p>
<p class="retweet_count">Retweets: 0</p>
<a class="permalink" href="../1011778410635497474">link</a>
</article>
</div>
</div>
</body>
<script>
document.getElementById('main').scrollIntoView();
</script>
</html>

Some files were not shown because too many files have changed in this diff Show More