-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathlifebuzz.com2.html
More file actions
1274 lines (1042 loc) · 63.8 KB
/
Copy pathlifebuzz.com2.html
File metadata and controls
1274 lines (1042 loc) · 63.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>What Do You Think This Guy Is Doing? You Will Never Guess…. And It’s Going To Break Your Heart</title>
<link rel="canonical" href="http://www.lifebuzz.com/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/">
<meta property="fb:app_id" content="460720927383621">
<meta property="og:site_name" content="LifeBuzz">
<meta property="article:publisher" content="https://www.facebook.com/LifeBuzzNews">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="http://www.lifebuzz.com/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/">
<meta property="og:title" content="What Do You Think This Guy Is Doing? You Will Never Guess…. And It’s Going To Break Your Heart">
<meta property="og:type" content="article">
<meta property="og:description" content="There are great people left on planet earth.">
<meta property="og:image" content="http://cdn.lifebuzz.com/images/21386/lifebuzz-7f835fde11acc45613717aeccd0ef62f-wide_1000.jpg">
<meta property="article:section" content="Pets">
<meta property="article:published_time" content="2014-01-10T15:31:59Z">
<meta property="article:modified_time" content="2014-12-10T14:29:30Z">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@LifeBuzzNews">
<meta name="twitter:domain" content="LifeBuzz">
<meta name="twitter:creator" content="@LifeBuzzNews">
<meta name="twitter:image:src" content="http://cdn.lifebuzz.com/images/21386/lifebuzz-7f835fde11acc45613717aeccd0ef62f-wide_1000.jpg">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" media="all" href="/assets/application-aa551c9bcdfaf5ec5f47f2d8acbb573d.css" />
<link rel="stylesheet" media="screen" href="http://fast.fonts.net/cssapi/969c3927-367e-405a-8254-44d9dc794f1a.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<![endif]-->
<!--[if gte IE 9]>
<style type="text/css">.gradient { filter: none !important; }</style>
<![endif]-->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"headline": "What Do You Think This Guy Is Doing? You Will Never Guess…. And It’s Going To Break Your Heart",
"url": "http://www.lifebuzz.com/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/",
"thumbnailUrl": "http://cdn.lifebuzz.com/images/21386/lifebuzz-7f835fde11acc45613717aeccd0ef62f-wide_1000.jpg",
"dateCreated": "2014-01-10T15:31:59+00:00",
"articleSection": "Pets",
"creator": "Haris"
}
</script>
</head>
<body data-layout="desktop" class="">
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '460720927383621',
xfbml: true,
version: 'v2.1'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script>
googletag.cmd.push(function() {
googletag.defineSlot('/13277506/LB_1D', [728, 90], 'div-gpt-ad-1419917133415-0').addService(googletag.pubads());
googletag.defineSlot('/13277506/ROS_728x90_abovearticle', [728, 90], 'div-gpt-ad-1419917133415-1').addService(googletag.pubads());
googletag.defineSlot('/13277506/ROS_300x250', [300, 250], 'div-gpt-ad-1419917133415-2').addService(googletag.pubads());
googletag.defineSlot('/13277506/ROS_728x90_belowarticle', [728, 90], 'div-gpt-ad-1419917133415-3').addService(googletag.pubads());
googletag.enableServices();
});
</script>
<script>
(function() {
var _fbq = window._fbq || (window._fbq = []);
if (!_fbq.loaded) {
var fbds = document.createElement('script');
fbds.async = true;
fbds.src = '//connect.facebook.net/en_US/fbds.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(fbds, s);
_fbq.loaded = true;
}
_fbq.push(['addPixelId', '638239236243349']);
})();
window._fbq = window._fbq || [];
window._fbq.push(['track', 'PixelInitialized', {}]);
</script>
<noscript><img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/tr?id=638239236243349&ev=PixelInitialized"></noscript>
<script>
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "6035233" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript><div style="display:none;"><img src="http://b.scorecardresearch.com/p?c1=2&c2=6035233&cv=2.0&cj=1" alt=""></div></noscript>
<header id="site-header">
<div class="container">
<div class="group">
<a class="logo" href="/"><img alt="LifeBuzz" src="/assets/logo-6a11158f26fdd5152c013f291f2167ca.png" /></a>
<div id="lb-1d" class="placement">
<div id="div-gpt-ad-1419917133415-0" style="width:728px; height:90px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1419917133415-0'); });
</script>
</div>
</div>
<h3>Live Inspired</h3>
</div>
</div>
<nav id="main-nav">
<div class="container group">
<ul class="content-nav collapse menu group">
<li>
<a class="section section-inspire" href="#">Inspire</a>
<div class="dropdown">
<div class="right">
<div class="stories group">
<article>
<a href="/agnes-cecile/">
<img alt="What This Woman Is About To Paint Is Going To Rock Your World..." src="http://cdn.lifebuzz.com/images/47028/lifebuzz-4585bbec883e3e9c5f353c283721911d-thumb_400.jpg" />
</a> <h3><a href="/agnes-cecile/">What This Woman Is About To Paint Is Going To Rock Your World...</a></h3>
</article>
<article>
<a href="/blob-art/">
<img alt="The Microscopic Detail In These Paintings Celebrates The Wonder Of Humanity. " src="http://cdn.lifebuzz.com/images/46984/lifebuzz-972342500109407746e9c4eaac6e1794-thumb_400.jpg" />
</a> <h3><a href="/blob-art/">The Microscopic Detail In These Paintings Celebrates The Wonder Of Humanity. </a></h3>
</article>
<article>
<a href="/paper/">
<img alt="She Cuts Paper With An Exquisite Delicacy That Will Take Your Breath Away. " src="http://cdn.lifebuzz.com/images/46842/lifebuzz-e34278ceead8a03ddf62425958025ce9-thumb_400.jpg" />
</a> <h3><a href="/paper/">She Cuts Paper With An Exquisite Delicacy That Will Take Your Breath Away. </a></h3>
</article>
<article>
<a href="/house/">
<img alt="You Won’t Believe What This Swedish 'Alien' Fan Did To His Home." src="http://cdn.lifebuzz.com/images/46767/lifebuzz-6e77d5345fe332b1f481e035f9e99530-thumb_400.jpg" />
</a> <h3><a href="/house/">You Won’t Believe What This Swedish 'Alien' Fan Did To His Home.</a></h3>
</article>
<article>
<a href="/library/">
<img alt="26 Libraries That Have Appeared In Every Book Lover’s Fantasy." src="http://cdn.lifebuzz.com/images/46829/lifebuzz-107f6bde3aec6be1ed80c5b6f35b6777-thumb_400.jpg" />
</a> <h3><a href="/library/">26 Libraries That Have Appeared In Every Book Lover’s Fantasy.</a></h3>
</article>
<article>
<a href="/pray/">
<img alt="He Was Resurrected From The Dead And Got A Second Chance With His Family." src="http://cdn.lifebuzz.com/images/46623/lifebuzz-ed2c22bb3750341ba8c3c9a2fa6a5b4c-thumb_400.jpg" />
</a> <h3><a href="/pray/">He Was Resurrected From The Dead And Got A Second Chance With His Family.</a></h3>
</article>
<article>
<a href="/ancient-trees/">
<img alt="Overwhelmingly Beautiful Photographs Of Earth's Oldest Living Trees." src="http://cdn.lifebuzz.com/images/46641/lifebuzz-770273964698ca0a2718397514742af5-thumb_400.jpg" />
</a> <h3><a href="/ancient-trees/">Overwhelmingly Beautiful Photographs Of Earth's Oldest Living Trees.</a></h3>
</article>
<article>
<a href="/heartfelt-moments/">
<img alt="An Emotional Compilation Of 2014’s Most Viral Videos." src="http://cdn.lifebuzz.com/images/46605/lifebuzz-1dc12a7a85b4968110a43bce8b773914-thumb_400.jpg" />
</a> <h3><a href="/heartfelt-moments/">An Emotional Compilation Of 2014’s Most Viral Videos.</a></h3>
</article>
</div>
</div>
<div class="left">
<ul class="subnav">
<li><a href="/inspire/art/">Art</a></li>
<li><a href="/inspire/heartwarming/">Heartwarming</a></li>
<li><a href="/inspire/home/">Home</a></li>
<li><a href="/inspire/music/">Music</a></li>
<li><a href="/inspire/nature/">Nature</a></li>
<li><a href="/inspire/photography/">Photography</a></li>
<li><a href="/inspire/travel/">Travel</a></li>
</ul>
</div>
</div>
</li>
<li>
<a class="section section-learn" href="#">Learn</a>
<div class="dropdown">
<div class="right">
<div class="stories group">
<article>
<a href="/pliers-magic/">
<img alt="He’s Been Doing It For Years. Now Watch How He Does It With Just 10 Cuts." src="http://cdn.lifebuzz.com/images/46923/lifebuzz-9079baaee43f8e8bbef706449b6600ad-thumb_400.jpg" />
</a> <h3><a href="/pliers-magic/">He’s Been Doing It For Years. Now Watch How He Does It With Just 10 Cuts.</a></h3>
</article>
<article>
<a href="/traditions/">
<img alt="24 Crazily Compelling New Years Traditions From Around The World." src="http://cdn.lifebuzz.com/images/46888/lifebuzz-e50e829a010b597252e27c521b97fde4-thumb_400.jpg" />
</a> <h3><a href="/traditions/">24 Crazily Compelling New Years Traditions From Around The World.</a></h3>
</article>
<article>
<a href="/earth/">
<img alt="This Mesmerizing NASA Video Reminded Me Of How Terrifyingly Beautiful Earth Can Be." src="http://cdn.lifebuzz.com/images/46511/lifebuzz-a0a91cfd108fd69f34a1852428ff2d72-thumb_400.jpg" />
</a> <h3><a href="/earth/">This Mesmerizing NASA Video Reminded Me Of How Terrifyingly Beautiful Earth Can Be.</a></h3>
</article>
<article>
<a href="/bride/">
<img alt="This Bride Got Dumped The Week Before Her Wedding, But It Didn’t Spoil The Wedding Photos." src="http://cdn.lifebuzz.com/images/46768/lifebuzz-419a311bc5d9299b75f37835706045d0-thumb_400.jpg" />
</a> <h3><a href="/bride/">This Bride Got Dumped The Week Before Her Wedding, But It Didn’t Spoil The Wedding Photos.</a></h3>
</article>
<article>
<a href="/storage-ideas/">
<img alt=" 42 Simple Storage Hacks That Will De-Clutter Your Life." src="http://cdn.lifebuzz.com/images/46730/lifebuzz-2343443aba260e43efd0bc724be427e3-thumb_400.jpg" />
</a> <h3><a href="/storage-ideas/"> 42 Simple Storage Hacks That Will De-Clutter Your Life.</a></h3>
</article>
<article>
<a href="/kissing/">
<img alt="Thank You Science. You Just Ruined My Next Kiss." src="http://cdn.lifebuzz.com/images/46601/lifebuzz-f9c99f3522ef6cbf780eb83735aac056-thumb_400.jpg" />
</a> <h3><a href="/kissing/">Thank You Science. You Just Ruined My Next Kiss.</a></h3>
</article>
<article>
<a href="/technology-today/">
<img alt="The Best 20 Inventions You’ve Never Heard Of But Will Definitely Want." src="http://cdn.lifebuzz.com/images/46497/lifebuzz-dbd4429e7affc9b09e93e70d993909a8-thumb_400.jpg" />
</a> <h3><a href="/technology-today/">The Best 20 Inventions You’ve Never Heard Of But Will Definitely Want.</a></h3>
</article>
<article>
<a href="/tricks/">
<img alt="7 Kitchen Tricks Used By Pros That Actually Work." src="http://cdn.lifebuzz.com/images/46383/lifebuzz-ba4c4b2a55da77b3a0f2f47b6e3128d6-thumb_400.jpg" />
</a> <h3><a href="/tricks/">7 Kitchen Tricks Used By Pros That Actually Work.</a></h3>
</article>
</div>
</div>
<div class="left">
<ul class="subnav">
<li><a href="/learn/advice/">Advice</a></li>
<li><a href="/learn/diy/">DIY</a></li>
<li><a href="/learn/hacks/">Hacks</a></li>
<li><a href="/learn/interesting/">Interesting</a></li>
<li><a href="/learn/news/">News</a></li>
<li><a href="/learn/science/">Science</a></li>
<li><a href="/learn/tech/">Tech</a></li>
</ul>
</div>
</div>
</li>
<li>
<a class="section section-live" href="#">Live</a>
<div class="dropdown">
<div class="right">
<div class="stories group">
<article>
<a href="/bacon-shield/">
<img alt="The Bacon Shield™, And 28 Other Examples Of Out-Of-The-Box Thinking." src="http://cdn.lifebuzz.com/images/46986/lifebuzz-c29b9c04824d57e3dfc05b904a1ec012-thumb_400.jpg" />
</a> <h3><a href="/bacon-shield/">The Bacon Shield™, And 28 Other Examples Of Out-Of-The-Box Thinking.</a></h3>
</article>
<article>
<a href="/restroom/">
<img alt="He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside." src="http://cdn.lifebuzz.com/images/46985/lifebuzz-3afef587abd879e9118ced5e8ce5f59a-thumb_400.jpg" />
</a> <h3><a href="/restroom/">He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside.</a></h3>
</article>
<article>
<a href="/hyphenated-names/">
<img alt="These Unluckily Hilarious Wedding Announcements Will Bring A Naughty Smile To Your Face. " src="http://cdn.lifebuzz.com/images/46964/lifebuzz-9b4bcaad26f7e4430167c96fa8905ecb-thumb_400.jpg" />
</a> <h3><a href="/hyphenated-names/">These Unluckily Hilarious Wedding Announcements Will Bring A Naughty Smile To Your Face. </a></h3>
</article>
<article>
<a href="/magazine/">
<img alt="10 Hauntingly Brilliant Magazine Covers That We Never Forgot." src="http://cdn.lifebuzz.com/images/46922/lifebuzz-e029e3f401002b031058bda9b896e5ae-thumb_400.jpg" />
</a> <h3><a href="/magazine/">10 Hauntingly Brilliant Magazine Covers That We Never Forgot.</a></h3>
</article>
<article>
<a href="/fun-festivals/">
<img alt="30 World Festivals That You'll Definitely Want To Add To Your Bucket List. " src="http://cdn.lifebuzz.com/images/46791/lifebuzz-5ee2e07777e0790f070d647416b0fea6-thumb_400.jpg" />
</a> <h3><a href="/fun-festivals/">30 World Festivals That You'll Definitely Want To Add To Your Bucket List. </a></h3>
</article>
<article>
<a href="/terrible-day/">
<img alt="27 People Who Shouldn't Have Bothered Getting Out Of Bed." src="http://cdn.lifebuzz.com/images/45911/lifebuzz-6472f5d62796dd3e54909ab4fc71b149-thumb_400.jpg" />
</a> <h3><a href="/terrible-day/">27 People Who Shouldn't Have Bothered Getting Out Of Bed.</a></h3>
</article>
<article>
<a href="/bun/">
<img alt="This Mum-To-Be Created A Pregnancy Time-Lapse Video That Will Unleash Your Inner Awwww." src="http://cdn.lifebuzz.com/images/46624/lifebuzz-b881268e33ce0941b1ace54c6b954688-thumb_400.jpg" />
</a> <h3><a href="/bun/">This Mum-To-Be Created A Pregnancy Time-Lapse Video That Will Unleash Your Inner Awwww.</a></h3>
</article>
<article>
<a href="/urinals/">
<img alt="25 Urinals You Need To Pee To Believe." src="http://cdn.lifebuzz.com/images/46728/lifebuzz-da3faecec71204839fd59e2ddc771781-thumb_400.jpg" />
</a> <h3><a href="/urinals/">25 Urinals You Need To Pee To Believe.</a></h3>
</article>
</div>
</div>
<div class="left">
<ul class="subnav">
<li><a href="/live/culture/">Culture</a></li>
<li><a href="/live/cute/">Cute</a></li>
<li><a href="/live/food/">Food</a></li>
<li><a href="/live/funny/">Funny</a></li>
<li><a href="/live/parenting/">Parenting</a></li>
<li><a href="/live/pets/">Pets</a></li>
<li><a href="/live/random/">Random</a></li>
</ul>
</div>
</div>
</li>
<li>
<a class="section" href="#">More</a>
<div class="dropdown dropdown-fixed">
<ul class="subnav">
<li><a href="/apps/">LifeBuzz Apps</a></li>
<li><a href="/trending/">Trending</a></li>
<li><a href="/top/">Top 100</a></li>
<li><a href="/galleries/">Photo Galleries</a></li>
<li><a href="/videos/">Videos</a></li>
<li><a href="/quizzes/">Quizzes</a></li>
</ul>
</div>
</li>
</ul>
<ul id="secondary-nav" class="collapse menu group" style="display: none;">
<li class="search"><a class="section-secondary group" href="#"><span class="icon"></span></a></li>
<li class="user">
<a class="section-secondary group" href="#">
<span class="icon"></span>
</a> </li>
</ul>
</div>
</nav>
</header>
<main class="main-sidebar group">
<div class="container">
<section id="content">
<div class="single">
<div class="section30 group">
<div class="user-meta group">
<img alt="Haris" src="http://www.gravatar.com/avatar/48f778115372dc2a5cceba7e49434362?d=http%3A%2F%2Fwww.lifebuzz.com%2Fstatic%2Fog-default.png&s=90" />
<div class="info">
<p>By <strong><a href="/profile/haris/">Haris</a></strong></p>
<p class="affiliation">LifeBuzz Staff</p>
</div>
</div>
<div class="shares-top">
<div class="share-bar">
<p class="share-count">16<span>shares</span></p>
<ul class="share-buttons collapse menu group">
<li><button data-location="Share Bars (Desktop)" class="facebook trigger-facebook-share with-text gradient group"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /><span>Share on Facebook</span></button></li>
<li><button data-location="Share Bars (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google+" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="email trigger-email-share gradient"><img alt="email" src="/assets/social/email-986a823b5fff252971a3ebf200ffd0a5.png" width="25" height="25" /></button></li>
</ul>
</div>
<div id="pinterest-modal" class="modal" style="display: none;">
<span class="close">×</span>
<img alt="Pinterest" class="logo" src="/assets/social/pinterest-full-0a83bd8c352fd72a03ab362f5ebf7be5.png" />
<div class="scroller">
<ul class="collapse group">
<li class="">
<div class="overlay">
<img alt="Exhausted Sylvie had been in the frigid water for more than 30 minutes" src="http://cdn.lifebuzz.com/images/21391/lifebuzz-53fad76e4452422b70aee114b3db3f1f-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21391/lifebuzz-53fad76e4452422b70aee114b3db3f1f-full.jpg"> </a>
</div>
<p>634x405</p>
</li>
<li class="">
<div class="overlay">
<img alt="Firefighter Sean Coyle uses a basket to slide out to Sylvie" src="http://cdn.lifebuzz.com/images/21396/lifebuzz-da702ce1d724fd285cfe020e0a9f8c24-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21396/lifebuzz-da702ce1d724fd285cfe020e0a9f8c24-full.jpg"> </a>
</div>
<p>634x597</p>
</li>
<li class="col-last">
<div class="overlay">
<img alt="The husky clings to the ice as firefighter Sean Coyle inches out to the hole" src="http://cdn.lifebuzz.com/images/21401/lifebuzz-55f22485f479000f84fdc347557751ec-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21401/lifebuzz-55f22485f479000f84fdc347557751ec-full.jpg"> </a>
</div>
<p>634x371</p>
</li>
<li class="">
<div class="overlay">
<img alt="Fireman Coyle grabs Sylvie by the scuff of the neck as he attempts to lift her from the water" src="http://cdn.lifebuzz.com/images/21405/lifebuzz-65e3676581c581f7764da548c39a0cd1-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21405/lifebuzz-65e3676581c581f7764da548c39a0cd1-full.jpg"> </a>
</div>
<p>634x388</p>
</li>
<li class="">
<div class="overlay">
<img alt="The 13-year-old Husky’s thick winter coat helped her stay alive in the freezing water" src="http://cdn.lifebuzz.com/images/21411/lifebuzz-1f2575544edf10069788e934e973273b-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21411/lifebuzz-1f2575544edf10069788e934e973273b-full.jpg"> </a>
</div>
<p>634x435</p>
</li>
<li class="col-last">
<div class="overlay">
<img alt="The pet emerged from the water and totters on the ice as she regained her balance" src="http://cdn.lifebuzz.com/images/21417/lifebuzz-ec1526c359450e358b90b978bb6c17d9-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21417/lifebuzz-ec1526c359450e358b90b978bb6c17d9-full.jpg"> </a>
</div>
<p>634x328</p>
</li>
<li class="">
<div class="overlay">
<img alt="Sylvie is grabbed to prevent her heading back on to the treacherous ice" src="http://cdn.lifebuzz.com/images/21422/lifebuzz-b745719e2647a717103a6f86a4951ba9-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21422/lifebuzz-b745719e2647a717103a6f86a4951ba9-full.jpg"> </a>
</div>
<p>634x439</p>
</li>
<li class="">
<div class="overlay">
<img alt="A worried owner is reunited with his beloved pet" src="http://cdn.lifebuzz.com/images/21428/lifebuzz-376fd3efa70cff51ade0636cf3fe9ae4-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21428/lifebuzz-376fd3efa70cff51ade0636cf3fe9ae4-full.jpg"> </a>
</div>
<p>634x460</p>
</li>
<li class="col-last">
<div class="overlay">
<img src="http://cdn.lifebuzz.com/images/21386/lifebuzz-7f835fde11acc45613717aeccd0ef62f-thumb_400.jpg" />
<a class="pin" data-media="http://cdn.lifebuzz.com/images/21386/lifebuzz-7f835fde11acc45613717aeccd0ef62f-full.jpg"> </a>
</div>
<p>634x597</p>
</li>
</ul>
</div>
</div>
<div id="after-share" class="modal" style="display: none;">
<span class="close">×</span>
<div class="inner">
<h1>Want More Positive Stories Like This One?</h1>
<div class="step">
<h3><strong>Step 1:</strong> <span>Like Us!</span></h3>
<div class="like-wrapper">
<img class="arrow" src="/assets/look-here-m8-99066a12456ad8f9bd0a9d303cf08a04.gif" alt="Look here m8" />
<div class="fb-like" data-href="https://www.facebook.com/LifeBuzzNews" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
</div>
</div>
<div class="step">
<h3><strong>Step 2:</strong> <span>Join Our Newsletter</span></h3>
<form class="newsletter-form" action="/subscribe/" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" />
<div class="group">
<input type="text" name="email" id="email" placeholder="Enter Email" class="newsletter-input" />
<input type="submit" name="commit" value="Subscribe" class="newsletter-submit" />
</div>
<p class="newsletter-message status"></p>
</form>
</div>
<p class="completed"><a href="#">I've completed the above steps, don't show me again.</a></p>
</div>
</div>
</div>
</div>
<div class="section20">
<h1>What Do You Think This Guy Is Doing? You Will Never Guess…. And It’s Going To Break Your Heart</h1>
</div>
<div class="section20">
<div id="lb-2d" class="placement">
<div id="div-gpt-ad-1419917133415-1" style="width:728px; height:90px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1419917133415-1'); });
</script>
</div>
<p class="advertisement"><a href="/contact/">Advertisement</a></p>
</div>
</div>
<div class="section30">
<p>Sylvie a 13 year old Husky went on her morning walk with her owner when she fell through the ice. After being trapped in the water for about 30 minutes, Firefighter Sean Coyle came to the rescue. The pictures below capture the event as it transpires. </p>
<div class="media-image">
<h3>Exhausted Sylvie had been in the frigid water for more than 30 minutes</h3>
<div class="media-image-container" style="width: 634px;">
<ul class="rollover-shares collapse">
<li><button data-location="Rollover (Desktop)" class="facebook trigger-facebook-share gradient"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google plus" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
</ul>
<img style="width: 634px;" alt="Exhausted Sylvie had been in the frigid water for more than 30 minutes" src="http://cdn.lifebuzz.com/images/21391/lifebuzz-53fad76e4452422b70aee114b3db3f1f-limit_2000.jpg" />
<p class="source">Boston Herald / Polaris</p>
</div>
</div>
<div class="media-image">
<h3>Firefighter Sean Coyle uses a basket to slide out to Sylvie</h3>
<div class="media-image-container" style="width: 634px;">
<ul class="rollover-shares collapse">
<li><button data-location="Rollover (Desktop)" class="facebook trigger-facebook-share gradient"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google plus" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
</ul>
<img style="width: 634px;" alt="Firefighter Sean Coyle uses a basket to slide out to Sylvie" src="http://cdn.lifebuzz.com/images/21396/lifebuzz-da702ce1d724fd285cfe020e0a9f8c24-limit_2000.jpg" />
<p class="source">Boston Herald / Polaris</p>
</div>
</div>
<div class="media-image">
<h3>The husky clings to the ice as firefighter Sean Coyle inches out to the hole</h3>
<div class="media-image-container" style="width: 634px;">
<ul class="rollover-shares collapse">
<li><button data-location="Rollover (Desktop)" class="facebook trigger-facebook-share gradient"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google plus" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
</ul>
<img style="width: 634px;" alt="The husky clings to the ice as firefighter Sean Coyle inches out to the hole" src="http://cdn.lifebuzz.com/images/21401/lifebuzz-55f22485f479000f84fdc347557751ec-limit_2000.jpg" />
<p class="source">Boston Herald / Polaris</p>
</div>
</div>
<div class="media-image">
<h3>Fireman Coyle grabs Sylvie by the scuff of the neck as he attempts to lift her from the water</h3>
<div class="media-image-container" style="width: 634px;">
<ul class="rollover-shares collapse">
<li><button data-location="Rollover (Desktop)" class="facebook trigger-facebook-share gradient"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Rollover (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google plus" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
</ul>
<img style="width: 634px;" alt="Fireman Coyle grabs Sylvie by the scuff of the neck as he attempts to lift her from the water" src="http://cdn.lifebuzz.com/images/21405/lifebuzz-65e3676581c581f7764da548c39a0cd1-limit_2000.jpg" />
<p class="source">Boston Herald / Polaris</p>
</div>
</div>
</div>
<div class="section10">
<div class="post-pagination">
<a class="button" href="/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/2/">Next <span>›</span></a>
<p>Page 1 of 2</p>
</div>
</div>
<div class="section20">
<div id="lb-4d" class="placement">
<p class="advertisement"><a href="/contact/">Advertisement</a></p>
<div id="div-gpt-ad-1419917133415-3" style="width:728px; height:90px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1419917133415-3'); });
</script>
</div>
</div>
</div>
<div class="section20">
<div class="share-bar">
<p class="share-count">16<span>shares</span></p>
<ul class="share-buttons collapse menu group">
<li><button data-location="Share Bars (Desktop)" class="facebook trigger-facebook-share with-text gradient group"><img alt="facebook" src="/assets/social/facebook-92884cbb258f763d73899d7c8719cd83.png" width="25" height="25" /><span>Share on Facebook</span></button></li>
<li><button data-location="Share Bars (Desktop)" class="twitter trigger-twitter-share gradient"><img alt="twitter" src="/assets/social/twitter-e0c102bffda910cc2f0e04a2bd4c3957.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="pinterest trigger-pinterest-share gradient"><img alt="pinterest" src="/assets/social/pinterest-aafb98c5c780b61665447fcc7d057dd8.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="stumble trigger-stumble-share gradient"><img alt="stumbleupon" src="/assets/social/stumble-835428804ca2e4f712112f3327e82dcc.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="gplus trigger-gplus-share gradient"><img alt="google+" src="/assets/social/gplus-1f68b81280a0de7bc676dff34a36ba17.png" width="25" height="25" /></button></li>
<li><button data-location="Share Bars (Desktop)" class="email trigger-email-share gradient"><img alt="email" src="/assets/social/email-986a823b5fff252971a3ebf200ffd0a5.png" width="25" height="25" /></button></li>
</ul>
</div>
</div>
<div class="section20">
<div data-str-native-key="11b0d54a" style="display: none;"></div>
<script src="http://native.sharethrough.com/assets/tag.js"></script>
</div>
<div class="section20 spacer-gray">
<div class="spacer">
<div id="native-2d">
<div id="criteo">
<script>
document.MAX_ct0 ='';
var m3_u = (location.protocol=='https:'?'https://cas.criteo.com/delivery/ajs.php?':'http://cas.criteo.com/delivery/ajs.php?');
var m3_r = Math.floor(Math.random()*99999999999);
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("zoneid=181966");document.write("&nodis=1");
document.write ('&cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
document.write ("&loc=" + escape(window.location));
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
if (document.context) document.write ("&context=" + escape(document.context));
if ((typeof(document.MAX_ct0) != 'undefined') && (document.MAX_ct0.substring(0,4) == 'http')) {
document.write ("&ct0=" + escape(document.MAX_ct0));
}
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'></scr"+"ipt>");
</script>
</div>
</div>
</div>
</div>
<script type="text/template" data-count="6" data-skip="/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/" data-parse="html" data-path="/dynamic/trending/" class="dynamic-content">
<div class="section30">
<h4 class="box group"><span>More from LifeBuzz</span></h4>
<div class="results"></div>
</div>
</script>
<div class="section30">
<h4>Tell us what you think</h4>
<div class="fb-comments" data-href="http://www.lifebuzz.com/what-do-you-think-this-guy-is-doing-you-will-never-guess-and-its-going-to-break-your-heart/" data-width="730" data-numposts="4" data-colorscheme="light"></div>
</div>
</div>
</section>
<aside id="sidebar">
<div class="widget widget-newsletter">
<h3>Laugh Every Morning</h3>
<div class="photos">
<img alt="lifebuzz newsletter" src="/assets/newsletter-photos-9ff69cf196c804ed78310df64c035ec3.png" />
</div>
<img alt="LifeBuzz newsletter" class="logo" src="/assets/newsletter-logo-5e795714ba65fe665f48ab9c1f79953d.png" />
<form class="newsletter-form" action="/subscribe/" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" />
<div class="group">
<input type="text" name="email" id="email" placeholder="Enter Email" class="newsletter-input" />
<input type="submit" name="commit" value="Subscribe" class="newsletter-submit" />
</div>
<p class="newsletter-message status"></p>
</form>
<p class="info">Subscribe and get your daily-dose of feel-good, uplifting, and amazing stories to start your day off with a smile.</p>
</div>
<div id="lb-3d" class="placement widget">
<div id="div-gpt-ad-1419917133415-2" style="width:300px; height:250px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1419917133415-2'); });
</script>
</div>
</div>
<div class="widget">
<div id="native-1d">
<script type="text/template" data-source="16514" data-parse="json" data-path="/platform/proxy/v1/content/" class="dynamic-content">
<div class="post-listing revcontent-listing listing-stacked group">
<div class="result">
<article class="group">
<a href="http://{{url}}" rel="nofollow" target="_blank"><img alt="" tmpl-src="{{image}}" class="thumb r160"></a>
<h4><a href="http://{{url}}" rel="nofollow" target="_blank">{{headline}}</a></h4>
<p class="description"><a href="http://{{url}}" rel="nofollow" target="_blank">{{description}}</a></p>
</article>
</div>
</div>
</script>
</div>
</div>
<div class="widget widget-internal widget-viral">
<h3>Going Viral</h3>
<div class="post-listing listing-stacked group">
<article class="group">
<a class="thumb-link" href="/30-facts/">
<img alt="30 Facts That Are So Irresistibly Weird You’ll Want To Tell Your Friends." class="thumb" src="http://cdn.lifebuzz.com/images/45144/lifebuzz-6be41c03662e057c8146461d6cd8ac53-thumb_800.jpg" />
<p class="number">1</p>
</a>
<h4><a href="/30-facts/">30 Facts That Are So Irresistibly Weird You’ll Want To Tell Your Friends.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/terrible-day/">
<img alt="27 People Who Shouldn't Have Bothered Getting Out Of Bed." class="thumb" src="http://cdn.lifebuzz.com/images/45911/lifebuzz-6472f5d62796dd3e54909ab4fc71b149-thumb_800.jpg" />
<p class="number">2</p>
</a>
<h4><a href="/terrible-day/">27 People Who Shouldn't Have Bothered Getting Out Of Bed.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/pools/">
<img alt="31 Of The Most Exotic Pools On Earth… Except #10 Which Is Horrifying." class="thumb" src="http://cdn.lifebuzz.com/images/4925/lifebuzz-873942574588b8734b1cb75c1a4bea6f-thumb_800.jpg" />
<p class="number">3</p>
</a>
<h4><a href="/pools/">31 Of The Most Exotic Pools On Earth… Except #10 Which Is Horrifying.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/festivals/">
<img alt="9 Of The Most Unusual Festivals In The World. #3 Is Too Weird To Be True…" class="thumb" src="http://cdn.lifebuzz.com/images/13376/lifebuzz-e7040e84d27307d5c08f5b90d393c18c-thumb_800.jpg" />
<p class="number">4</p>
</a>
<h4><a href="/festivals/">9 Of The Most Unusual Festivals In The World. #3 Is Too Weird To Be True…</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/funny-texts/">
<img alt="27 Of The Funniest Texts Ever Sent Between Parents And Their Children. Hilarious!" class="thumb" src="http://cdn.lifebuzz.com/images/8806/lifebuzz-f983b45bdd4c2a1e0ff70007e97d6653-thumb_800.jpg" />
<p class="number">5</p>
</a>
<h4><a href="/funny-texts/">27 Of The Funniest Texts Ever Sent Between Parents And Their Children. Hilarious!</a></h4>
</article>
</div>
</div>
<div class="widget widget-internal widget-videos">
<h3>Featured Videos</h3>
<div class="post-listing listing-stacked group">
<article class="group">
<a class="thumb-link" href="/agnes-cecile/">
<img alt="What This Woman Is About To Paint Is Going To Rock Your World..." class="thumb" src="http://cdn.lifebuzz.com/images/47028/lifebuzz-4585bbec883e3e9c5f353c283721911d-thumb_800.jpg" />
<img alt="video" class="badge" src="/assets/play-4b3c9b0db96bef063264b4d6466d04aa.png" />
</a>
<h4><a href="/agnes-cecile/">What This Woman Is About To Paint Is Going To Rock Your World...</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/restroom/">
<img alt="He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside." class="thumb" src="http://cdn.lifebuzz.com/images/46985/lifebuzz-3afef587abd879e9118ced5e8ce5f59a-thumb_800.jpg" />
<img alt="video" class="badge" src="/assets/play-4b3c9b0db96bef063264b4d6466d04aa.png" />
</a>
<h4><a href="/restroom/">He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/earth/">
<img alt="This Mesmerizing NASA Video Reminded Me Of How Terrifyingly Beautiful Earth Can Be." class="thumb" src="http://cdn.lifebuzz.com/images/46511/lifebuzz-a0a91cfd108fd69f34a1852428ff2d72-thumb_800.jpg" />
<img alt="video" class="badge" src="/assets/play-4b3c9b0db96bef063264b4d6466d04aa.png" />
</a>
<h4><a href="/earth/">This Mesmerizing NASA Video Reminded Me Of How Terrifyingly Beautiful Earth Can Be.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/bun/">
<img alt="This Mum-To-Be Created A Pregnancy Time-Lapse Video That Will Unleash Your Inner Awwww." class="thumb" src="http://cdn.lifebuzz.com/images/46624/lifebuzz-b881268e33ce0941b1ace54c6b954688-thumb_800.jpg" />
<img alt="video" class="badge" src="/assets/play-4b3c9b0db96bef063264b4d6466d04aa.png" />
</a>
<h4><a href="/bun/">This Mum-To-Be Created A Pregnancy Time-Lapse Video That Will Unleash Your Inner Awwww.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/pray/">
<img alt="He Was Resurrected From The Dead And Got A Second Chance With His Family." class="thumb" src="http://cdn.lifebuzz.com/images/46623/lifebuzz-ed2c22bb3750341ba8c3c9a2fa6a5b4c-thumb_800.jpg" />
<img alt="video" class="badge" src="/assets/play-4b3c9b0db96bef063264b4d6466d04aa.png" />
</a>
<h4><a href="/pray/">He Was Resurrected From The Dead And Got A Second Chance With His Family.</a></h4>
</article>
</div>
</div>
<div class="widget widget-internal widget-latest">
<h3>Latest from LifeBuzz</h3>
<div class="post-listing listing-stacked group">
<article class="group">
<a class="thumb-link" href="/bacon-shield/">
<img alt="The Bacon Shield™, And 28 Other Examples Of Out-Of-The-Box Thinking." class="thumb" src="http://cdn.lifebuzz.com/images/46986/lifebuzz-c29b9c04824d57e3dfc05b904a1ec012-thumb_800.jpg" />
<p class="number">1</p>
</a>
<h4><a href="/bacon-shield/">The Bacon Shield™, And 28 Other Examples Of Out-Of-The-Box Thinking.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/agnes-cecile/">
<img alt="What This Woman Is About To Paint Is Going To Rock Your World..." class="thumb" src="http://cdn.lifebuzz.com/images/47028/lifebuzz-4585bbec883e3e9c5f353c283721911d-thumb_800.jpg" />
<p class="number">2</p>
</a>
<h4><a href="/agnes-cecile/">What This Woman Is About To Paint Is Going To Rock Your World...</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/restroom/">
<img alt="He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside." class="thumb" src="http://cdn.lifebuzz.com/images/46985/lifebuzz-3afef587abd879e9118ced5e8ce5f59a-thumb_800.jpg" />
<p class="number">3</p>
</a>
<h4><a href="/restroom/">He Visited This Gas Station Bathroom And Was Shocked By What He Discovered Inside.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/blob-art/">
<img alt="The Microscopic Detail In These Paintings Celebrates The Wonder Of Humanity. " class="thumb" src="http://cdn.lifebuzz.com/images/46984/lifebuzz-972342500109407746e9c4eaac6e1794-thumb_800.jpg" />
<p class="number">4</p>
</a>
<h4><a href="/blob-art/">The Microscopic Detail In These Paintings Celebrates The Wonder Of Humanity. </a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/hyphenated-names/">
<img alt="These Unluckily Hilarious Wedding Announcements Will Bring A Naughty Smile To Your Face. " class="thumb" src="http://cdn.lifebuzz.com/images/46964/lifebuzz-9b4bcaad26f7e4430167c96fa8905ecb-thumb_800.jpg" />
<p class="number">5</p>
</a>
<h4><a href="/hyphenated-names/">These Unluckily Hilarious Wedding Announcements Will Bring A Naughty Smile To Your Face. </a></h4>
</article>
</div>
</div>
<div class="widget widget-internal widget-galleries">
<h3>Photo Galleries</h3>
<div class="post-listing listing-stacked group">
<article class="group">
<a class="thumb-link" href="/bacon-shield/">
<div class="gallery group">
<img class="item-1" alt="thumb" src="http://cdn.lifebuzz.com/images/47014/lifebuzz-799acd4d3ab24629f16b7aa5c04936e5-square_300.jpg" />
<img class="item-2" alt="thumb" src="http://cdn.lifebuzz.com/images/47023/lifebuzz-4c460a3f360b851c71dd075ffbb57ed0-square_300.jpg" />
<img class="item-3" alt="thumb" src="http://cdn.lifebuzz.com/images/47019/lifebuzz-1b3972e173ebe44a3566a77b9cd66f88-square_300.jpg" />
<img class="item-4" alt="thumb" src="http://cdn.lifebuzz.com/images/47015/lifebuzz-a781406e5c51043a9e6ade9689905330-square_300.jpg" />
<img class="item-5" alt="thumb" src="http://cdn.lifebuzz.com/images/47013/lifebuzz-6617fe7470578b48431966142772359c-square_300.jpg" />
<img class="item-6" alt="thumb" src="http://cdn.lifebuzz.com/images/47007/lifebuzz-1852df6117f2187d1748d6df46428571-square_300.jpg" />
</div>
</a>
<h4><a href="/bacon-shield/">The Bacon Shield™, And 28 Other Examples Of Out-Of-The-Box Thinking.</a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/blob-art/">
<div class="gallery group">
<img class="item-1" alt="thumb" src="http://cdn.lifebuzz.com/images/46965/lifebuzz-d891a3deee774bfe99104143dde0bfaa-square_300.jpg" />
<img class="item-2" alt="thumb" src="http://cdn.lifebuzz.com/images/46966/lifebuzz-7a1d2a5c5d182bce3dd23c1ee4727383-square_300.jpg" />
<img class="item-3" alt="thumb" src="http://cdn.lifebuzz.com/images/46967/lifebuzz-9ed09af141a4104aa81f1b5c05fbe9c1-square_300.jpg" />
<img class="item-4" alt="thumb" src="http://cdn.lifebuzz.com/images/46968/lifebuzz-b49ed82354b69c7e17930ff5737243db-square_300.jpg" />
<img class="item-5" alt="thumb" src="http://cdn.lifebuzz.com/images/46976/lifebuzz-d688dcf914ee138d69673fa83f8af81e-square_300.jpg" />
<img class="item-6" alt="thumb" src="http://cdn.lifebuzz.com/images/46969/lifebuzz-dcc21a3a930c9cace75bd166ad4cce85-square_300.jpg" />
</div>
</a>
<h4><a href="/blob-art/">The Microscopic Detail In These Paintings Celebrates The Wonder Of Humanity. </a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/hyphenated-names/">
<div class="gallery group">
<img class="item-1" alt="thumb" src="http://cdn.lifebuzz.com/images/46963/lifebuzz-851b5652eefb569d4b1f391aac1be115-square_300.jpg" />
<img class="item-2" alt="thumb" src="http://cdn.lifebuzz.com/images/46925/lifebuzz-ad7d7dd28011988c9843da78fb75b382-square_300.jpg" />
<img class="item-3" alt="thumb" src="http://cdn.lifebuzz.com/images/46926/lifebuzz-651728d16e1689ff6aea6674e1678f54-square_300.jpg" />
<img class="item-4" alt="thumb" src="http://cdn.lifebuzz.com/images/46929/lifebuzz-8214e94a8e024976aa8dff1d2345d1af-square_300.jpg" />
<img class="item-5" alt="thumb" src="http://cdn.lifebuzz.com/images/46924/lifebuzz-0aa9ef0606fda6063f2ce00052cec800-square_300.jpg" />
<img class="item-6" alt="thumb" src="http://cdn.lifebuzz.com/images/46927/lifebuzz-cd3671e1dc903a984b0c901fce8ad12f-square_300.jpg" />
</div>
</a>
<h4><a href="/hyphenated-names/">These Unluckily Hilarious Wedding Announcements Will Bring A Naughty Smile To Your Face. </a></h4>
</article>
<article class="group">
<a class="thumb-link" href="/pliers-magic/">
<div class="gallery group">
<img class="item-1" alt="thumb" src="http://cdn.lifebuzz.com/images/46606/lifebuzz-d635fc58abca360cd61119cb933ad92f-square_300.jpg" />
<img class="item-2" alt="thumb" src="http://cdn.lifebuzz.com/images/46607/lifebuzz-d71bc2de78401adc02c238e9ed894880-square_300.jpg" />
<img class="item-3" alt="thumb" src="http://cdn.lifebuzz.com/images/46608/lifebuzz-b2725a10b4eb56ec4b6f1cd42ac615a1-square_300.jpg" />
<img class="item-4" alt="thumb" src="http://cdn.lifebuzz.com/images/46613/lifebuzz-9c72ec188680b71fbc97613587ed696b-square_300.jpg" />
<img class="item-5" alt="thumb" src="http://cdn.lifebuzz.com/images/46614/lifebuzz-233dea048ed9887216561aab16954e67-square_300.jpg" />
<img class="item-6" alt="thumb" src="http://cdn.lifebuzz.com/images/46615/lifebuzz-3f8b3de1af2a6c6e7929b54395d03cbd-square_300.jpg" />
</div>
</a>
<h4><a href="/pliers-magic/">He’s Been Doing It For Years. Now Watch How He Does It With Just 10 Cuts.</a></h4>
</article>