open_graph_reader 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +22 -0
- data/README.md +95 -0
- data/lib/open_graph_reader/builder.rb +12 -0
- data/lib/open_graph_reader/configuration.rb +12 -2
- data/lib/open_graph_reader/definitions.rb +1 -1
- data/lib/open_graph_reader/object/dsl/types.rb +1 -1
- data/lib/open_graph_reader/parser.rb +1 -3
- data/lib/open_graph_reader/version.rb +1 -1
- data/spec/fixtures/real_world/missing_title.html +338 -336
- data/spec/fixtures/real_world/missing_url.html +1764 -0
- data/spec/integration/real_world_spec.rb +24 -2
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db37466a37c6f19012cb28728f8c10b7dfb9df70
|
4
|
+
data.tar.gz: ff4f55260b72e3376bd9637dbdcf11ec40231348
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c6d918852d76bd15419c0576023df1ec7660ca7e06d3ebeb68c815997492272da1dd80ab42e2f047dcdac89d406cb240880843dfab01a71375978140caf4216
|
7
|
+
data.tar.gz: acb9b08a7e6769e8e1d435d3190bfa2069f82267d9a4c5f35b2af9dc4590a890f500c7f952fb99a33bac2446a5d6c4e794938d841a0bfa45e5494b25ca85f834
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Jonne Haß <me@jhass.eu>
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# OpenGraphReader [![Gem Version](https://badge.fury.io/rb/open_graph_reader.svg)](http://badge.fury.io/rb/open_graph_reader) [![Build Status](https://travis-ci.org/jhass/open_graph_reader.svg?branch=master)](https://travis-ci.org/jhass/open_graph_reader)
|
2
|
+
|
3
|
+
A library to fetch and parse OpenGraph properties from an URL or a given string.
|
4
|
+
|
5
|
+
## Features
|
6
|
+
|
7
|
+
* Strives to be robust and complete.
|
8
|
+
* Intuitive method based API.
|
9
|
+
* Supports custom prefixes.
|
10
|
+
* Validates properties according to their type.
|
11
|
+
|
12
|
+
## Anti-features
|
13
|
+
|
14
|
+
* Can ignore the complete object if anything is invalid.
|
15
|
+
* Does not fall back to guess the basic attributes from regular tags.
|
16
|
+
* Only supports the latest OpenGraph protocol as defined at http://ogp.me out of the box.
|
17
|
+
* Objects and their properties are defined in code, not by parsing the response at the namespace identifier.
|
18
|
+
|
19
|
+
|
20
|
+
Ruby 2.0 and later are supported.
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
Add this line to your application's Gemfile:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem 'open_graph_reader'
|
28
|
+
```
|
29
|
+
|
30
|
+
And then execute:
|
31
|
+
|
32
|
+
$ bundle
|
33
|
+
|
34
|
+
Or install it yourself as:
|
35
|
+
|
36
|
+
$ gem install open_graph_reader
|
37
|
+
|
38
|
+
|
39
|
+
Install the following gems the same way for a higher success rate at fetching websites:
|
40
|
+
|
41
|
+
* [faraday_middleware](https://github.com/lostisland/faraday_middleware)
|
42
|
+
* [faraday-cookie_jar](https://github.com/miyagawa/faraday-cookie_jar)
|
43
|
+
|
44
|
+
## Usage
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
require 'open_graph_reader'
|
48
|
+
|
49
|
+
# Returns nil if anything on the object is invalid
|
50
|
+
object = OpenGraphReader.fetch("http://examples.opengraphprotocol.us/article.html")
|
51
|
+
|
52
|
+
# Raises if anything on the object is invalid
|
53
|
+
object = OpenGraphReader.fetch!("http://examples.opengraphprotocol.us/article.html")
|
54
|
+
|
55
|
+
# Read from string
|
56
|
+
object = OpenGraphReader.parse(html)
|
57
|
+
object = OpenGraphReader.parse!(html)
|
58
|
+
|
59
|
+
# Access by full property name
|
60
|
+
object.og.title #=> "5 Held in Plot to Bug Office"
|
61
|
+
|
62
|
+
# Optional properties can return nil
|
63
|
+
object.og.description #=> nil
|
64
|
+
|
65
|
+
# Supports properties that are objects themselves
|
66
|
+
object.og.image.to_s #=> "http://examples.opengraphprotocol.us/media/images/50.png"
|
67
|
+
object.og.image.content #=> "http://examples.opengraphprotocol.us/media/images/50.png"
|
68
|
+
object.og.image.url #=> "https://examples.opengraphprotocol.us/media/images/50.png"
|
69
|
+
object.og.image.width #=> 50
|
70
|
+
|
71
|
+
# Supports arrays
|
72
|
+
object.og.images.first == object.og.image #=> true
|
73
|
+
object.article.tags #=> ["Watergate"]
|
74
|
+
|
75
|
+
# Custom namespace
|
76
|
+
class MyNamespace
|
77
|
+
include OpenGraphReader::Object
|
78
|
+
|
79
|
+
namespace :my, :namespace # my:namespace
|
80
|
+
string :name, required: true # my:namespace:name
|
81
|
+
url :url, default: "http://example.org/my_namespace"
|
82
|
+
integer :pages, collection: true
|
83
|
+
# See the shipped definitions for more examples
|
84
|
+
end
|
85
|
+
```
|
86
|
+
|
87
|
+
[Documentation](http://rubydoc.info/gems/open_graph_reader)
|
88
|
+
|
89
|
+
## Contributing
|
90
|
+
|
91
|
+
1. Fork it ( https://github.com/jhass/open_graph_reader/fork )
|
92
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
93
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
94
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
95
|
+
5. Create a new Pull Request
|
@@ -120,6 +120,18 @@ module OpenGraphReader
|
|
120
120
|
end
|
121
121
|
|
122
122
|
def synthesize_required_properties base
|
123
|
+
synthesize_url base
|
124
|
+
synthesize_title base
|
125
|
+
end
|
126
|
+
|
127
|
+
def synthesize_url base
|
128
|
+
return unless OpenGraphReader.config.synthesize_url
|
129
|
+
return if base.og.url
|
130
|
+
|
131
|
+
base.og["url"] = OpenGraphReader.current_origin
|
132
|
+
end
|
133
|
+
|
134
|
+
def synthesize_title base
|
123
135
|
return unless OpenGraphReader.config.synthesize_title
|
124
136
|
return if base.og.title
|
125
137
|
|
@@ -55,6 +55,15 @@ module OpenGraphReader
|
|
55
55
|
# @return [Bool]
|
56
56
|
attr_accessor :synthesize_title
|
57
57
|
|
58
|
+
# Return request URL if og:url is missing (default: <tt>false</tt>).
|
59
|
+
#
|
60
|
+
# The standard makes defining og:url required, but it's often missing.
|
61
|
+
# This enables a fallback that sets the URL to the request URL if none
|
62
|
+
# was found.
|
63
|
+
#
|
64
|
+
# @return [Bool]
|
65
|
+
attr_accessor :synthesize_url
|
66
|
+
|
58
67
|
# Guess object URL when it looks like a path (default: <tt>false</tt>).
|
59
68
|
#
|
60
69
|
# The standard requires the url type to point to a full http or https URL.
|
@@ -64,11 +73,11 @@ module OpenGraphReader
|
|
64
73
|
# to do so.
|
65
74
|
#
|
66
75
|
# @return [Bool]
|
67
|
-
attr_accessor :
|
76
|
+
attr_accessor :synthesize_full_url
|
68
77
|
|
69
78
|
# Guess image URL when it looks like a path (default: <tt>false</tt>).
|
70
79
|
#
|
71
|
-
# See {#
|
80
|
+
# See {#synthesize_full_url}
|
72
81
|
#
|
73
82
|
# @return [Bool]
|
74
83
|
attr_accessor :synthesize_image_url
|
@@ -95,6 +104,7 @@ module OpenGraphReader
|
|
95
104
|
@discard_invalid_optional_properties = false
|
96
105
|
@synthesize_title = false
|
97
106
|
@synthesize_url = false
|
107
|
+
@synthesize_full_url = false
|
98
108
|
@synthesize_image_url = false
|
99
109
|
@guess_datetime_format = false
|
100
110
|
end
|
@@ -21,7 +21,7 @@ module OpenGraphReader
|
|
21
21
|
|
22
22
|
next value if value.start_with?("http://") || value.start_with?("https://")
|
23
23
|
|
24
|
-
if options[:image] && OpenGraphReader.config.synthesize_image_url || OpenGraphReader.config.
|
24
|
+
if options[:image] && OpenGraphReader.config.synthesize_image_url || OpenGraphReader.config.synthesize_full_url
|
25
25
|
unless OpenGraphReader.current_origin
|
26
26
|
next unless options[:required] || !OpenGraphReader.config.discard_invalid_optional_properties
|
27
27
|
|
@@ -25,10 +25,8 @@ module OpenGraphReader
|
|
25
25
|
# Create a new parser.
|
26
26
|
#
|
27
27
|
# @param [#to_s, Nokogiri::XML::Node] html the document to parse.
|
28
|
-
|
29
|
-
def initialize html, origin=nil
|
28
|
+
def initialize html
|
30
29
|
@doc = to_doc html
|
31
|
-
@origin = origin
|
32
30
|
@additional_namespaces = []
|
33
31
|
end
|
34
32
|
|
@@ -1,159 +1,161 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
-
<title>Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably | Geekologie</title>
|
6
|
-
<meta name="description" content=" This is a video of ultra conservative Christian Megan Fox (not that Megan Fox, trust me) taking a trip to the Field Museum of Natural History in Chicago to debunk their 'Evolving Earth' exhibit and audit it for a..." />
|
7
|
-
<link rel="image_src" href="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
8
|
-
<meta name="og:image" content="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
9
|
-
<meta property="og:image" content="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
<link
|
15
|
-
|
16
|
-
<
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
gads
|
23
|
-
|
24
|
-
gads.
|
25
|
-
'
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
googletag.
|
35
|
-
googletag.defineSlot('/1039157/
|
36
|
-
googletag.defineSlot('/1039157/
|
37
|
-
googletag.defineSlot('/1039157/
|
38
|
-
googletag.defineSlot('/1039157/
|
39
|
-
googletag.defineSlot('/1039157/
|
40
|
-
googletag.defineSlot('/1039157/
|
41
|
-
googletag.
|
42
|
-
googletag.
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
</
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
<
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
bsa.
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
<span class="network-
|
65
|
-
<span class="network-button"><a href="http://
|
66
|
-
<span class="network-button"><a href="http://
|
67
|
-
|
68
|
-
<
|
69
|
-
|
70
|
-
|
71
|
-
<a id="follow-list-
|
72
|
-
|
73
|
-
|
74
|
-
</div
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
<
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
</div
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
<div id="
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
<li id="navbar-link"><a href="/
|
97
|
-
<li id="navbar-link"><a href="/
|
98
|
-
<li id="navbar-link"><a href="/
|
99
|
-
<
|
100
|
-
<
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
<input type="hidden" name="
|
105
|
-
<input type="
|
106
|
-
<input type="
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
</div
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
<div class="
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
<a id="share-list-
|
149
|
-
|
150
|
-
|
151
|
-
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<title>Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably | Geekologie</title>
|
6
|
+
<meta name="description" content=" This is a video of ultra conservative Christian Megan Fox (not that Megan Fox, trust me) taking a trip to the Field Museum of Natural History in Chicago to debunk their 'Evolving Earth' exhibit and audit it for a..." />
|
7
|
+
<link rel="image_src" href="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
8
|
+
<meta name="og:image" content="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
9
|
+
<meta property="og:image" content="http://geekologie.com/assets_c/2014/11/crazy-lady-goes-to-the-museum-thumb-640x389-29314.jpg" />
|
10
|
+
<!-- The original doesn't have an og:url either, but we want to test for the title -->
|
11
|
+
<meta property="og:url" content="http://example.org" />
|
12
|
+
|
13
|
+
<!-- banner header start --><meta name="viewport" content="width=1024" />
|
14
|
+
<link href="/v4/css/dark.css?v=4.67" rel="stylesheet" type="text/css" />
|
15
|
+
<link rel="alternate" type="application/atom+xml" title="Atom" href="/atom.xml" />
|
16
|
+
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/index.xml" />
|
17
|
+
|
18
|
+
<script type='text/javascript'>
|
19
|
+
var googletag = googletag || {};
|
20
|
+
googletag.cmd = googletag.cmd || [];
|
21
|
+
(function() {
|
22
|
+
var gads = document.createElement('script');
|
23
|
+
gads.async = true;
|
24
|
+
gads.type = 'text/javascript';
|
25
|
+
var useSSL = 'https:' == document.location.protocol;
|
26
|
+
gads.src = (useSSL ? 'https:' : 'http:') +
|
27
|
+
'//www.googletagservices.com/tag/js/gpt.js';
|
28
|
+
var node = document.getElementsByTagName('script')[0];
|
29
|
+
node.parentNode.insertBefore(gads, node);
|
30
|
+
})();
|
31
|
+
</script>
|
32
|
+
|
33
|
+
<script type='text/javascript'>
|
34
|
+
googletag.cmd.push(function() {
|
35
|
+
googletag.defineSlot('/1039157/Geekologie_Home_160x600', [160, 600], 'div-gpt-ad-1395253431325-0').addService(googletag.pubads());
|
36
|
+
googletag.defineSlot('/1039157/Geekologie_Home_300x250', [300, 250], 'div-gpt-ad-1395253431325-1').addService(googletag.pubads());
|
37
|
+
googletag.defineSlot('/1039157/Geekologie_Home_728x90_top', [728, 90], 'div-gpt-ad-1395253431325-2').addService(googletag.pubads());
|
38
|
+
googletag.defineSlot('/1039157/Geekologie_ROS_160x600', [160, 600], 'div-gpt-ad-1395253431325-3').addService(googletag.pubads());
|
39
|
+
googletag.defineSlot('/1039157/Geekologie_ROS_300x250', [300, 250], 'div-gpt-ad-1395253431325-4').addService(googletag.pubads());
|
40
|
+
googletag.defineSlot('/1039157/Geekologie_ROS_728x90_top', [728, 90], 'div-gpt-ad-1395253431325-5').addService(googletag.pubads());
|
41
|
+
googletag.defineSlot('/1039157/Geekologie_Home_970x90', [970, 90], 'div-gpt-ad-1395445088417-0').addService(googletag.pubads());
|
42
|
+
googletag.defineSlot('/1039157/Geekologie_ROS_970x90', [970, 90], 'div-gpt-ad-1395445088417-1').addService(googletag.pubads());
|
43
|
+
googletag.pubads().enableSingleRequest();
|
44
|
+
googletag.enableServices();
|
45
|
+
});
|
46
|
+
</script>
|
47
|
+
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- BuySellAds Ad Code -->
|
52
|
+
<script type="text/javascript">
|
53
|
+
(function(){
|
54
|
+
var bsa = document.createElement('script');
|
55
|
+
bsa.type = 'text/javascript';
|
56
|
+
bsa.async = true;
|
57
|
+
bsa.src = 'http://s3.buysellads.com/ac/bsa.js';
|
58
|
+
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);
|
59
|
+
})();
|
60
|
+
</script>
|
61
|
+
<!-- End BuySellAds Ad Code -->
|
62
|
+
<div id="network-bar-wrapper">
|
63
|
+
<div id="network-bar">
|
64
|
+
<span class="network-logo"><a href="http://anticlown.com/"><img src="/v4/assets/transparent.png" width="275" height="40" /></a></span>
|
65
|
+
<span class="network-button"><a href="http://geekologie.com/">Geekologie</a></span>
|
66
|
+
<span class="network-button"><a href="http://iwatchstuff.com/">I Watch Stuff</a></span>
|
67
|
+
<span class="network-button"><a href="http://thesuperficial.com/">The Superficial</a></span>
|
68
|
+
<span class="network-button"><a href="http://hedonistica.com/">Hedonistica</a></span>
|
69
|
+
|
70
|
+
<div id="follow-list" class="clearfix">
|
71
|
+
<a id="follow-list-facebook" href="http://www.facebook.com/geekologie">Facebook</a>
|
72
|
+
<a id="follow-list-twitter" href="http://twitter.com/geekologie">Twitter</a>
|
73
|
+
<a id="follow-list-googleplus" href="http://plus.google.com/+geekologie">Google+</a>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</div><!-- end network bar -->
|
77
|
+
<div id="head-leaderboard"><div id = 'billboard_placeholder' style = 'width: 970px; margin: auto; text-align: center;'>
|
78
|
+
<div id = 'billboard_ad' style = 'display: inline-block; min-width: 728px;'>
|
79
|
+
<!-- begin ad tag (tile=1) -->
|
80
|
+
<script type="text/javascript">
|
81
|
+
//<![CDATA[
|
82
|
+
ord = window.ord || Math.floor(Math.random()*1E16);
|
83
|
+
document.write('<script type="text/javascript" src="http://ad2.netshelter.net/adj/ns.geekologie/general;ppos=atf;kw=;tile=1;dcopt=ist;sz=728x90,970x90,970x250;ord=' + ord + '?"><\/script>');
|
84
|
+
//]]>
|
85
|
+
</script>
|
86
|
+
<noscript><a href="http://ad2.netshelter.net/jump/ns.geekologie/general;ppos=atf;kw=;tile=1;sz=728x90,970x90,970x250;ord=123456789?" target="_blank" ><img src="http://ad2.netshelter.net/ad/ns.geekologie/general;ppos=atf;kw=;tile=1;sz=728x90,970x90,970x250;ord=123456789?" border="0" alt="" /></a></noscript>
|
87
|
+
<!-- end ad tag -->
|
88
|
+
</div>
|
89
|
+
</div>
|
90
|
+
</div><!-- end leaderboard -->
|
91
|
+
<div id="header"><a href="/"><img src="/v4/assets/bg-header-test.jpg" border="0" /></a></div><!-- header end -->
|
92
|
+
<div id="container">
|
93
|
+
|
94
|
+
<div id="navbar-wrapper">
|
95
|
+
<ul id="navbar">
|
96
|
+
<li id="navbar-link"><a href="/">Home</a></li>
|
97
|
+
<li id="navbar-link"><a href="/mt/mt-search.cgi?blog_id=1&search=video&limit=20">Videos</a></li>
|
98
|
+
<li id="navbar-link"><a href="/mt/mt-search.cgi?blog_id=1&tag=video games&limit=20">Video Games</a></li>
|
99
|
+
<li id="navbar-link"><a href="/archives.php">Archives</a></li>
|
100
|
+
<li id="navbar-link"><a href="/contact/">Send Us Tips!</a></li>
|
101
|
+
<div class="search-wrapper">
|
102
|
+
<form action="/search.php" id="cse-search-box">
|
103
|
+
<div>
|
104
|
+
<input type="hidden" name="cx" value="partner-pub-1999638775863175:0402632565" />
|
105
|
+
<input type="hidden" name="cof" value="FORID:10" />
|
106
|
+
<input type="hidden" name="ie" value="ISO-8859-1" />
|
107
|
+
<input type="text" name="q" class="box" size="25" />
|
108
|
+
<input type="submit" name="sa" class="btn" value="Search" />
|
109
|
+
</div>
|
110
|
+
</form>
|
111
|
+
|
112
|
+
<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>
|
113
|
+
</div>
|
114
|
+
</ul><!-- end navigation bar -->
|
115
|
+
</div><!-- end banner header -->
|
116
|
+
|
117
|
+
<div id="content">
|
118
|
+
|
119
|
+
<!-- <div id="entry-navigation">
|
120
|
+
<ul>
|
121
|
+
<li class="column previous">
|
122
|
+
|
123
|
+
<a href="http://geekologie.com/2014/11/jurassic-world-trailer-welp-we-went-too.php">
|
124
|
+
<strong>Previous Story</strong>
|
125
|
+
<span>'Jurassic World' Trailer: Welp, We Went Too Far with Dinosaur Cloning Again</span> -->
|
126
|
+
<!-- <span>'Jurassic World' Trailer: Welp, We Went Too Far with Dinosaur Cloning Again</span> -->
|
127
|
+
<!-- </a>
|
128
|
+
|
129
|
+
</li>
|
130
|
+
<li class="column next">
|
131
|
+
|
132
|
+
<a href="http://geekologie.com/2014/11/planets-of-the-solar-system-glassware.php">
|
133
|
+
<strong>Next Story</strong>
|
134
|
+
<span>Heck Yeah, Pluto: Planets Of The Solar System Glassware</span> -->
|
135
|
+
<!-- <span>Heck Yeah, Pluto: Planets Of The Solar System Glassware</span> -->
|
136
|
+
<!-- </a>
|
137
|
+
|
138
|
+
</li>
|
139
|
+
</ul>
|
140
|
+
</div> --><!-- #entry-navigation -->
|
141
|
+
|
142
|
+
<!-- entry start --><div class="entry">
|
143
|
+
<h2>Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably</h2>
|
144
|
+
<div class="post-meta">November 26, 2014 in <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=believing%20in%20something&limit=20">believing in something</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=crazy%20people&limit=20">crazy people</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=debunking%20evolution%20singlehandedly&limit=20">debunking evolution singlehandedly</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=dinosaurs&limit=20">dinosaurs</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=evolution&limit=20">evolution</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=fact%20checking&limit=20">fact checking</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=holy%20smokes&limit=20">holy smokes</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=mission%20accomplished&limit=20">mission accomplished</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=museum&limit=20">museum</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=nailed%20it&limit=20">nailed it</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=oh%20wow&limit=20">oh wow</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=please%20please%20please%20send%20your%20kids%20to%20public%20schools&limit=20">please please please send your kids to public schools</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=religion&limit=20">religion</a>, <a href="http://geekologie.com/mt/mt-search.cgi?blog_id=1&tag=wtf%20did%20i%20just%20watch%3F&limit=20">wtf did i just watch?</a></div>
|
145
|
+
|
146
|
+
<div class="sl-before">
|
147
|
+
<div id="share-list" class="clearfix">
|
148
|
+
<a id="share-list-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Facebook</a>
|
149
|
+
<a id="share-list-twitter" href="http://twitter.com/intent/tweet?related=geekologie&text=Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably+%28via+%40geekologie%29&url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Twitter</a>
|
150
|
+
<a id="share-list-googleplus" href="https://plus.google.com/share?url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Google+</a>
|
151
|
+
</div>
|
152
|
+
</div>
|
153
|
+
|
152
154
|
<p><img alt="crazy-lady-goes-to-the-museum.jpg" src="http://geekologie.com/2014/11/26/crazy-lady-goes-to-the-museum.jpg" width="640" height="389" class="mt-image-none" style="" /></p>
|
153
155
|
|
154
156
|
<p>This is a video of ultra conservative Christian Megan Fox (not that Megan Fox, trust me) taking a trip to the Field Museum of Natural History in Chicago <a href="https://www.youtube.com/watch?v=32mxZxv3dYM">to debunk their 'Evolving Earth' exhibit </a>and audit it for a liberal (aka scientific, in her mind) bias. It starts off awful and ends worse, and that's even looking past the shoddy camerawork (which wasn't easy). I posted three short teaser highlights for the video first, then the whole 30-minute thing in case you really, really like torturing yourself. Although I'd still suggest you try hanging yourself from the ceiling with some of those giant meat-hooks in your back first. </p>
|
155
157
|
|
156
|
-
<p>Keep going for the videos while I cross all my fingers and my toes Megan is just a very convincing troll.</p>
|
158
|
+
<p>Keep going for the videos while I cross all my fingers and my toes Megan is just a very convincing troll.</p>
|
157
159
|
<p><iframe width="640" height="360" src="//www.youtube.com/embed/UsxxWQ7KviQ?feature=player_detailpage" frameborder="0" allowfullscreen></iframe></p>
|
158
160
|
|
159
161
|
<p><iframe width="640" height="360" src="//www.youtube.com/embed/h8YOpM21iUc?feature=player_detailpage" frameborder="0" allowfullscreen></iframe></p>
|
@@ -162,36 +164,36 @@ document.write('<script type="text/javascript" src="http://ad2.netshelter.net/ad
|
|
162
164
|
|
163
165
|
<p><iframe width="640" height="360" src="//www.youtube.com/embed/32mxZxv3dYM?feature=player_detailpage" frameborder="0" allowfullscreen></iframe></p>
|
164
166
|
|
165
|
-
<p>Thanks to moyer, Jackie and Porterhouse Pete, who are still rubbing their eyeballs really hard and painfully until they see colors.</p>
|
166
|
-
|
167
|
-
<!-- <div class="related">
|
168
|
-
<div class="title-related-stories">Related Stories</div>
|
169
|
-
<ul>
|
170
|
-
|
171
|
-
<li><a href="http://geekologie.com/2014/02/video-of-the-entire-bill-nyeken-ham-crea.php">The Entire Bill Nye/Ken Ham Evolution/Creation Debate</a></li>
|
172
|
-
|
173
|
-
<li><a href="http://geekologie.com/2014/02/bill-nye-debating-creation-museum-founde.php">Bill Nye Debating Creation Museum Founder Tonight</a></li>
|
174
|
-
|
175
|
-
<li><a href="http://geekologie.com/2010/05/hands-down-the-best-wedding-dj.php">Hands Down The Best Wedding DJ EVER</a></li>
|
176
|
-
|
177
|
-
</ul>
|
178
|
-
</div> -->
|
179
|
-
|
180
|
-
<div class="sl-after">
|
181
|
-
<div id="share-list" class="clearfix">
|
182
|
-
<a id="share-list-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Facebook</a>
|
183
|
-
<a id="share-list-twitter" href="http://twitter.com/intent/tweet?related=geekologie&text=Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably+%28via+%40geekologie%29&url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Twitter</a>
|
184
|
-
<a id="share-list-googleplus" href="https://plus.google.com/share?url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Google+</a>
|
185
|
-
</div>
|
186
|
-
</div>
|
187
|
-
|
188
|
-
</div><!-- end entry -->
|
189
|
-
|
190
|
-
<div class="entry">
|
191
|
-
<div class="content-header">There are <span class="blue"><script type='text/javascript' src='http://disqus.com/forums/geekologie/get_num_replies_for_entry.js?url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php'></script><noscript>View</noscript></span> Comments.</div>
|
192
|
-
<div id="comments">
|
167
|
+
<p>Thanks to moyer, Jackie and Porterhouse Pete, who are still rubbing their eyeballs really hard and painfully until they see colors.</p>
|
168
|
+
|
169
|
+
<!-- <div class="related">
|
170
|
+
<div class="title-related-stories">Related Stories</div>
|
171
|
+
<ul>
|
172
|
+
|
173
|
+
<li><a href="http://geekologie.com/2014/02/video-of-the-entire-bill-nyeken-ham-crea.php">The Entire Bill Nye/Ken Ham Evolution/Creation Debate</a></li>
|
174
|
+
|
175
|
+
<li><a href="http://geekologie.com/2014/02/bill-nye-debating-creation-museum-founde.php">Bill Nye Debating Creation Museum Founder Tonight</a></li>
|
176
|
+
|
177
|
+
<li><a href="http://geekologie.com/2010/05/hands-down-the-best-wedding-dj.php">Hands Down The Best Wedding DJ EVER</a></li>
|
178
|
+
|
179
|
+
</ul>
|
180
|
+
</div> -->
|
181
|
+
|
182
|
+
<div class="sl-after">
|
183
|
+
<div id="share-list" class="clearfix">
|
184
|
+
<a id="share-list-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Facebook</a>
|
185
|
+
<a id="share-list-twitter" href="http://twitter.com/intent/tweet?related=geekologie&text=Ultra Conservative Christian Lady Goes To Museum, Tries To Debunk Evolution, Fails Beyond Miserably+%28via+%40geekologie%29&url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Twitter</a>
|
186
|
+
<a id="share-list-googleplus" href="https://plus.google.com/share?url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php" target="_blank" >Google+</a>
|
187
|
+
</div>
|
188
|
+
</div>
|
189
|
+
|
190
|
+
</div><!-- end entry -->
|
191
|
+
|
192
|
+
<div class="entry">
|
193
|
+
<div class="content-header">There are <span class="blue"><script type='text/javascript' src='http://disqus.com/forums/geekologie/get_num_replies_for_entry.js?url=http://geekologie.com/2014/11/ultra-conservative-christian-lady-goes-t.php'></script><noscript>View</noscript></span> Comments.</div>
|
194
|
+
<div id="comments">
|
193
195
|
<link rel="stylesheet" href="http://disqus.com/stylesheets/geekologie/disqus.css?v=2.0" type="text/css" media="screen" />
|
194
|
-
|
196
|
+
|
195
197
|
<div id="disqus_thread">
|
196
198
|
<div id="dsq-content">
|
197
199
|
<ul id="dsq-comments">
|
@@ -450,158 +452,158 @@ document.write('<script type="text/javascript" src="http://ad2.netshelter.net/ad
|
|
450
452
|
<!-- d tb code was here -->
|
451
453
|
|
452
454
|
<script type="text/javascript" charset="utf-8" src="http://disqus.com/scripts/geekologie/disqus.js?v=2.0&slug=ultra_conservative_christian_lady_goes_to_museum_tries_to_debunk_evolution_fails_miserably&pname=movabletype&pver=2.0"></script>
|
453
|
-
|
454
|
-
</div>
|
455
|
-
</div>
|
456
|
-
|
457
|
-
|
458
|
-
<!-- end entry -->
|
459
|
-
|
460
|
-
<!-- <ul id="page-navigation">
|
461
|
-
|
462
|
-
<a href="http://geekologie.com/2014/11/jurassic-world-trailer-welp-we-went-too.php"><li class="page-navigation-left">Previous story<br /> this way!</li></a>
|
463
|
-
|
464
|
-
<a href="/"><li class="page-navigation-center">Geekologie<br /> Main Page</li></a>
|
465
|
-
|
466
|
-
<a href="http://geekologie.com/2014/11/planets-of-the-solar-system-glassware.php"><li class="page-navigation-right clearfix">Next story<br /> this way!</li></a>
|
467
|
-
|
468
|
-
</ul> #page-navigation -->
|
469
|
-
|
470
|
-
</div><!-- end content -->
|
471
|
-
|
472
|
-
<!-- sidebar start-->
|
473
|
-
<div id="sidebar">
|
474
|
-
<div class="rectangle-ad"><!-- Geekologie_ROS_300x250 -->
|
475
|
-
<div id='div-gpt-ad-1395253431325-4' style='width:300px; height:250px;'>
|
476
|
-
<script type='text/javascript'>
|
477
|
-
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1395253431325-4'); });
|
478
|
-
</script>
|
479
|
-
</div>
|
480
|
-
|
481
|
-
</div>
|
482
|
-
|
483
|
-
|
484
|
-
<div class="widget-header clearfix"><div class="widget-header-txt">Next Story</div></div>
|
485
|
-
<ul class="widget">
|
486
|
-
<li class="featured-entry">
|
487
|
-
<a href="http://geekologie.com/2014/11/planets-of-the-solar-system-glassware.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/11/planet-glassware-1-thumb-300xauto-29315.jpg" width="300px" /></div>
|
488
|
-
<div class="txt_holder">Heck Yeah, Pluto: Planets Of The Solar System Glassware</div></a>
|
489
|
-
</li>
|
490
|
-
</ul>
|
491
|
-
|
492
|
-
|
493
|
-
<div class="widget-header clearfix"><div class="widget-header-txt">Previous Story</div></div>
|
494
|
-
<ul class="widget">
|
495
|
-
|
496
|
-
<li class="featured-entry">
|
497
|
-
<a href="http://geekologie.com/2014/11/jurassic-world-trailer-welp-we-went-too.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/11/jurassic-world-trailer-thumb-300xauto-29313.jpg" width="300px" /></div>
|
498
|
-
<div class="txt_holder">'Jurassic World' Trailer: Welp, We Went Too Far with Dinosaur Cloning Again</div></a>
|
499
|
-
</li>
|
500
|
-
|
501
|
-
</ul>
|
502
|
-
|
503
|
-
<div class="rectangle-ad"><iframe width="300" height="250" src="http://geekologie.com/pubgalaxy/300x250_BTF.html" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true"></iframe></div>
|
504
|
-
|
505
|
-
<div class="widget-header clearfix"><div class="widget-header-txt">More from <a href="/">Geekologie</a></div></div>
|
506
|
-
<ul class="widget">
|
507
|
-
|
508
|
-
<li class="featured-entry">
|
509
|
-
<a href="http://geekologie.com/2014/02/video-of-the-entire-bill-nyeken-ham-crea.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/02/bill-nye-ken-ham-evolution-young-earth-debate-thumb-300xauto-26093.jpg" width="300px" /></div>
|
510
|
-
<div class="txt_holder">The Entire Bill Nye/Ken Ham Evolution/Creation Debate</div></a>
|
511
|
-
</li>
|
512
|
-
|
513
|
-
<li class="featured-entry">
|
514
|
-
<a href="http://geekologie.com/2014/02/bill-nye-debating-creation-museum-founde.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/02/evolution-vs-creation-debate-thumb-300xauto-26087.jpg" width="300px" /></div>
|
515
|
-
<div class="txt_holder">Bill Nye Debating Creation Museum Founder Tonight</div></a>
|
516
|
-
</li>
|
517
|
-
|
518
|
-
<li class="featured-entry">
|
519
|
-
<a href="http://geekologie.com/2010/05/hands-down-the-best-wedding-dj.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2010/05/want-to-hire-thumb-300xauto-8784.jpg" width="300px" /></div>
|
520
|
-
<div class="txt_holder">Hands Down The Best Wedding DJ EVER</div></a>
|
521
|
-
</li>
|
522
|
-
|
523
|
-
</ul>
|
524
|
-
|
525
|
-
<div id="skyscraper"><!-- Geekologie_ROS_160x600 -->
|
526
|
-
<div id='div-gpt-ad-1395253431325-3' style='width:160px; height:600px;'>
|
527
|
-
<script type='text/javascript'>
|
528
|
-
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1395253431325-3'); });
|
529
|
-
</script>
|
530
|
-
</div>
|
531
|
-
|
532
|
-
</div><!-- #skyscraper -->
|
533
|
-
|
534
|
-
</div>
|
535
|
-
<!-- end sidebar -->
|
536
|
-
|
537
|
-
<!-- banner footer start --><div id="footer-leaderboard"><iframe width="728" height="90" src="http://geekologie.com/pubgalaxy/728x90_BTF.html" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true"></iframe></div>
|
538
|
-
|
539
|
-
<div id="footer">
|
540
|
-
<div class="column wide"><h4>About Geekologie</h4>
|
541
|
-
<p>Geekologie is a geek blog dedicated to the scientific study of gadgets, gizmos, and awesome.</p>
|
542
|
-
</div>
|
543
|
-
<div class="column"><h4>Follow Us</h4>
|
544
|
-
<ul><div id="follow-list-sm" class="clearfix">
|
545
|
-
<li class="clearfix"><a id="follow-list-facebook-sm" href="http://www.facebook.com/geekologie">Facebook</a></li>
|
546
|
-
<li class="clearfix"><a id="follow-list-twitter-sm" href="http://twitter.com/geekologie">Twitter</a></li>
|
547
|
-
<li class="clearfix"><a id="follow-list-googleplus-sm" href="http://plus.google.com/+geekologie">Google+</a></li>
|
548
|
-
<li class="clearfix"><a id="follow-list-rss-sm" href="http://feeds.feedburner.com/geekologie/iShm">RSS</a></li>
|
549
|
-
</div></ul>
|
550
|
-
</div>
|
551
|
-
<div class="column"><h4>Categories</h4>
|
552
|
-
<ul>
|
553
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=video&limit=20">Videos</a></li>
|
554
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&tag=video games&limit=20">Video Games</a></li>
|
555
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=design&limit=20">Design</a></li>
|
556
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=cute&limit=20">Cute</a></li>
|
557
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=fail&limit=20">Fail</a></li>
|
558
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=sexy&limit=20">Sexy</a></li>
|
559
|
-
<li><a href="/mt/mt-search.cgi?blog_id=1&search=star wars&limit=20">Star Wars</a></li>
|
560
|
-
</ul>
|
561
|
-
</div>
|
562
|
-
<div class="column"><h4>Geekologie</h4>
|
563
|
-
<ul>
|
564
|
-
<li><a href="/">Home</a></li>
|
565
|
-
<li><a href="/archives.php">Archives</a></li>
|
566
|
-
<li><a href="/contact/">Contact</a></li>
|
567
|
-
<li><a href="/contact/">Advertise</a></li>
|
568
|
-
<li><a href="http://www.anticlown.com/privacy_policy.php">Privacy</a></li>
|
569
|
-
<li><a href="http://www.anticlown.com/terms_of_use.php">Terms</a></li>
|
570
|
-
<li><a href="http://www.anticlown.com/removal.php">Copyright</a></li>
|
571
|
-
</ul>
|
572
|
-
</div>
|
573
|
-
<div class="column last"><h4>Anticlown</h4>
|
574
|
-
<ul>
|
575
|
-
<li><a href="http://geekologie.com/">Geekologie</a></li>
|
576
|
-
<li><a href="http://iwatchstuff.com/">I Watch Stuff</a></li>
|
577
|
-
<li><a href="http://thesuperficial.com/">The Superficial</a></li>
|
578
|
-
<li><a href="http://hedonistica.com/">Hedonistica</a></li>
|
579
|
-
</ul>
|
580
|
-
</div>
|
581
|
-
<div class="copyright">Copyright 2014 <a href="http://anticlown.com/">Anticlown Media</a>. All rights reserved.</div>
|
582
|
-
</div><!-- end footer -->
|
583
|
-
|
584
|
-
<div id="network-footer">
|
585
|
-
<a href="http://anticlown.com/"><img class="anticlown" src="/v4/assets/logo-anticlown.png" width="399" height="27" /></a>
|
586
|
-
<div class="network-footer-flourish"></div>
|
587
|
-
</div><!-- end network footer -->
|
588
|
-
</div><!-- end container -->
|
589
|
-
|
590
|
-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" ></script>
|
591
|
-
<script type="text/javascript">
|
592
|
-
|
593
|
-
var _gaq = _gaq || [];
|
594
|
-
_gaq.push(['_setAccount', 'UA-96613-3']);
|
595
|
-
_gaq.push(['_trackPageview']);
|
596
|
-
|
597
|
-
(function() {
|
598
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
599
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
600
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
601
|
-
})();
|
602
|
-
|
603
|
-
</script>
|
604
|
-
|
605
|
-
<script type="text/javascript" src="http://track.netshelter.net/js/sites/geekologie.com.js"></script>
|
606
|
-
</body>
|
607
|
-
</html><!-- end banner footer -->
|
455
|
+
|
456
|
+
</div>
|
457
|
+
</div>
|
458
|
+
|
459
|
+
|
460
|
+
<!-- end entry -->
|
461
|
+
|
462
|
+
<!-- <ul id="page-navigation">
|
463
|
+
|
464
|
+
<a href="http://geekologie.com/2014/11/jurassic-world-trailer-welp-we-went-too.php"><li class="page-navigation-left">Previous story<br /> this way!</li></a>
|
465
|
+
|
466
|
+
<a href="/"><li class="page-navigation-center">Geekologie<br /> Main Page</li></a>
|
467
|
+
|
468
|
+
<a href="http://geekologie.com/2014/11/planets-of-the-solar-system-glassware.php"><li class="page-navigation-right clearfix">Next story<br /> this way!</li></a>
|
469
|
+
|
470
|
+
</ul> #page-navigation -->
|
471
|
+
|
472
|
+
</div><!-- end content -->
|
473
|
+
|
474
|
+
<!-- sidebar start-->
|
475
|
+
<div id="sidebar">
|
476
|
+
<div class="rectangle-ad"><!-- Geekologie_ROS_300x250 -->
|
477
|
+
<div id='div-gpt-ad-1395253431325-4' style='width:300px; height:250px;'>
|
478
|
+
<script type='text/javascript'>
|
479
|
+
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1395253431325-4'); });
|
480
|
+
</script>
|
481
|
+
</div>
|
482
|
+
|
483
|
+
</div>
|
484
|
+
|
485
|
+
|
486
|
+
<div class="widget-header clearfix"><div class="widget-header-txt">Next Story</div></div>
|
487
|
+
<ul class="widget">
|
488
|
+
<li class="featured-entry">
|
489
|
+
<a href="http://geekologie.com/2014/11/planets-of-the-solar-system-glassware.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/11/planet-glassware-1-thumb-300xauto-29315.jpg" width="300px" /></div>
|
490
|
+
<div class="txt_holder">Heck Yeah, Pluto: Planets Of The Solar System Glassware</div></a>
|
491
|
+
</li>
|
492
|
+
</ul>
|
493
|
+
|
494
|
+
|
495
|
+
<div class="widget-header clearfix"><div class="widget-header-txt">Previous Story</div></div>
|
496
|
+
<ul class="widget">
|
497
|
+
|
498
|
+
<li class="featured-entry">
|
499
|
+
<a href="http://geekologie.com/2014/11/jurassic-world-trailer-welp-we-went-too.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/11/jurassic-world-trailer-thumb-300xauto-29313.jpg" width="300px" /></div>
|
500
|
+
<div class="txt_holder">'Jurassic World' Trailer: Welp, We Went Too Far with Dinosaur Cloning Again</div></a>
|
501
|
+
</li>
|
502
|
+
|
503
|
+
</ul>
|
504
|
+
|
505
|
+
<div class="rectangle-ad"><iframe width="300" height="250" src="http://geekologie.com/pubgalaxy/300x250_BTF.html" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true"></iframe></div>
|
506
|
+
|
507
|
+
<div class="widget-header clearfix"><div class="widget-header-txt">More from <a href="/">Geekologie</a></div></div>
|
508
|
+
<ul class="widget">
|
509
|
+
|
510
|
+
<li class="featured-entry">
|
511
|
+
<a href="http://geekologie.com/2014/02/video-of-the-entire-bill-nyeken-ham-crea.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/02/bill-nye-ken-ham-evolution-young-earth-debate-thumb-300xauto-26093.jpg" width="300px" /></div>
|
512
|
+
<div class="txt_holder">The Entire Bill Nye/Ken Ham Evolution/Creation Debate</div></a>
|
513
|
+
</li>
|
514
|
+
|
515
|
+
<li class="featured-entry">
|
516
|
+
<a href="http://geekologie.com/2014/02/bill-nye-debating-creation-museum-founde.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2014/02/evolution-vs-creation-debate-thumb-300xauto-26087.jpg" width="300px" /></div>
|
517
|
+
<div class="txt_holder">Bill Nye Debating Creation Museum Founder Tonight</div></a>
|
518
|
+
</li>
|
519
|
+
|
520
|
+
<li class="featured-entry">
|
521
|
+
<a href="http://geekologie.com/2010/05/hands-down-the-best-wedding-dj.php"><div class="featured-thumb"><img src="http://geekologie.com/assets_c/2010/05/want-to-hire-thumb-300xauto-8784.jpg" width="300px" /></div>
|
522
|
+
<div class="txt_holder">Hands Down The Best Wedding DJ EVER</div></a>
|
523
|
+
</li>
|
524
|
+
|
525
|
+
</ul>
|
526
|
+
|
527
|
+
<div id="skyscraper"><!-- Geekologie_ROS_160x600 -->
|
528
|
+
<div id='div-gpt-ad-1395253431325-3' style='width:160px; height:600px;'>
|
529
|
+
<script type='text/javascript'>
|
530
|
+
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1395253431325-3'); });
|
531
|
+
</script>
|
532
|
+
</div>
|
533
|
+
|
534
|
+
</div><!-- #skyscraper -->
|
535
|
+
|
536
|
+
</div>
|
537
|
+
<!-- end sidebar -->
|
538
|
+
|
539
|
+
<!-- banner footer start --><div id="footer-leaderboard"><iframe width="728" height="90" src="http://geekologie.com/pubgalaxy/728x90_BTF.html" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true"></iframe></div>
|
540
|
+
|
541
|
+
<div id="footer">
|
542
|
+
<div class="column wide"><h4>About Geekologie</h4>
|
543
|
+
<p>Geekologie is a geek blog dedicated to the scientific study of gadgets, gizmos, and awesome.</p>
|
544
|
+
</div>
|
545
|
+
<div class="column"><h4>Follow Us</h4>
|
546
|
+
<ul><div id="follow-list-sm" class="clearfix">
|
547
|
+
<li class="clearfix"><a id="follow-list-facebook-sm" href="http://www.facebook.com/geekologie">Facebook</a></li>
|
548
|
+
<li class="clearfix"><a id="follow-list-twitter-sm" href="http://twitter.com/geekologie">Twitter</a></li>
|
549
|
+
<li class="clearfix"><a id="follow-list-googleplus-sm" href="http://plus.google.com/+geekologie">Google+</a></li>
|
550
|
+
<li class="clearfix"><a id="follow-list-rss-sm" href="http://feeds.feedburner.com/geekologie/iShm">RSS</a></li>
|
551
|
+
</div></ul>
|
552
|
+
</div>
|
553
|
+
<div class="column"><h4>Categories</h4>
|
554
|
+
<ul>
|
555
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=video&limit=20">Videos</a></li>
|
556
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&tag=video games&limit=20">Video Games</a></li>
|
557
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=design&limit=20">Design</a></li>
|
558
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=cute&limit=20">Cute</a></li>
|
559
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=fail&limit=20">Fail</a></li>
|
560
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=sexy&limit=20">Sexy</a></li>
|
561
|
+
<li><a href="/mt/mt-search.cgi?blog_id=1&search=star wars&limit=20">Star Wars</a></li>
|
562
|
+
</ul>
|
563
|
+
</div>
|
564
|
+
<div class="column"><h4>Geekologie</h4>
|
565
|
+
<ul>
|
566
|
+
<li><a href="/">Home</a></li>
|
567
|
+
<li><a href="/archives.php">Archives</a></li>
|
568
|
+
<li><a href="/contact/">Contact</a></li>
|
569
|
+
<li><a href="/contact/">Advertise</a></li>
|
570
|
+
<li><a href="http://www.anticlown.com/privacy_policy.php">Privacy</a></li>
|
571
|
+
<li><a href="http://www.anticlown.com/terms_of_use.php">Terms</a></li>
|
572
|
+
<li><a href="http://www.anticlown.com/removal.php">Copyright</a></li>
|
573
|
+
</ul>
|
574
|
+
</div>
|
575
|
+
<div class="column last"><h4>Anticlown</h4>
|
576
|
+
<ul>
|
577
|
+
<li><a href="http://geekologie.com/">Geekologie</a></li>
|
578
|
+
<li><a href="http://iwatchstuff.com/">I Watch Stuff</a></li>
|
579
|
+
<li><a href="http://thesuperficial.com/">The Superficial</a></li>
|
580
|
+
<li><a href="http://hedonistica.com/">Hedonistica</a></li>
|
581
|
+
</ul>
|
582
|
+
</div>
|
583
|
+
<div class="copyright">Copyright 2014 <a href="http://anticlown.com/">Anticlown Media</a>. All rights reserved.</div>
|
584
|
+
</div><!-- end footer -->
|
585
|
+
|
586
|
+
<div id="network-footer">
|
587
|
+
<a href="http://anticlown.com/"><img class="anticlown" src="/v4/assets/logo-anticlown.png" width="399" height="27" /></a>
|
588
|
+
<div class="network-footer-flourish"></div>
|
589
|
+
</div><!-- end network footer -->
|
590
|
+
</div><!-- end container -->
|
591
|
+
|
592
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" ></script>
|
593
|
+
<script type="text/javascript">
|
594
|
+
|
595
|
+
var _gaq = _gaq || [];
|
596
|
+
_gaq.push(['_setAccount', 'UA-96613-3']);
|
597
|
+
_gaq.push(['_trackPageview']);
|
598
|
+
|
599
|
+
(function() {
|
600
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
601
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
602
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
603
|
+
})();
|
604
|
+
|
605
|
+
</script>
|
606
|
+
|
607
|
+
<script type="text/javascript" src="http://track.netshelter.net/js/sites/geekologie.com.js"></script>
|
608
|
+
</body>
|
609
|
+
</html><!-- end banner footer -->
|