Added twitter archive
This commit is contained in:
parent
34ebb789c3
commit
d845c2768a
19
content/mytweets.md
Normal file
19
content/mytweets.md
Normal 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 >}}
|
2
layouts/shortcodes/rawhtml.html
Normal file
2
layouts/shortcodes/rawhtml.html
Normal file
@ -0,0 +1,2 @@
|
||||
<!-- raw html -->
|
||||
{{.Inner}}
|
57
static/mytweets/app.js
Normal file
57
static/mytweets/app.js
Normal 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);
|
@ -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>← @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>
|
@ -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="Tonight’s experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmon’s done.
|
||||
|
||||
Dinner might suck, but the kitchen smells heavenly." />
|
||||
|
||||
|
||||
|
||||
<title>Tonight’s experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmon’s 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>← @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">
|
||||
Tonight’s experiment: sliced peaches, lemongrass, ginger, knob of butter in a skillet. Frozen salmon filet portions on top. Simmer until salmon’s 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>
|
47
static/mytweets/ewagoner/status/10004104151568384/index.html
Normal file
47
static/mytweets/ewagoner/status/10004104151568384/index.html
Normal 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>← @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>
|
@ -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 it’s 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 it’s 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>← @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 it’s 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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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 ICE’s largest family detention facility—Karnes, which is run by a private contractor—and I happened up…" />
|
||||
|
||||
|
||||
|
||||
<title>RT @nycsouthpaw: I was reading about ICE’s 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>← @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 ICE’s 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>
|
@ -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 & accurate thread & largely the experience of ppl *actually working* on this including my org. If all yr outrage is direc…" />
|
||||
|
||||
|
||||
|
||||
<title>RT @awoo_: A good & accurate thread & 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>← @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 & accurate thread & 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>
|
47
static/mytweets/ewagoner/status/1001233930/index.html
Normal file
47
static/mytweets/ewagoner/status/1001233930/index.html
Normal 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>← @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>
|
@ -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>← @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>
|
47
static/mytweets/ewagoner/status/1001520853/index.html
Normal file
47
static/mytweets/ewagoner/status/1001520853/index.html
Normal 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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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 hasn’t let up since. And judging by the radar, it won’t let up for quite some time. Guess I’ll 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 hasn’t let up since. And judging by the radar, it won’t let up for quite some time. Guess I’ll be up a while. </title>
|
||||
<link rel="stylesheet" href="../../../styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<div class="flex-wrap">
|
||||
<a href="../../../">
|
||||
<p>← @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 hasn’t let up since. And judging by the radar, it won’t let up for quite some time. Guess I’ll 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>
|
@ -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>← @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>
|
47
static/mytweets/ewagoner/status/10025870930/index.html
Normal file
47
static/mytweets/ewagoner/status/10025870930/index.html
Normal 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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
47
static/mytweets/ewagoner/status/1002960362/index.html
Normal file
47
static/mytweets/ewagoner/status/1002960362/index.html
Normal 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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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>← @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>
|
@ -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>← @ewagoner Twitter archive |