From 2f6706b577373dacdb1d6819334e9c8d89932ac4 Mon Sep 17 00:00:00 2001 From: 030 Date: Sun, 5 Apr 2020 00:18:12 +0200 Subject: [PATCH] [GH-6][GH-18] Examples and atom feed parsing. --- README | 22 +-- atom.go | 32 ++++ example/list.txt | 16 ++ example/main.go | 57 +++++++ go.mod | 5 + go.sum | 2 + regular.go | 54 ++++++ rss.go | 60 +------ rss_test.go | 10 +- testdata/reddit-google.rss | 336 +++++++++++++++++++++++++++++++++++++ testdata/reddit.rss | 310 ++++++++++++++++++++++++++++++++++ 11 files changed, 830 insertions(+), 74 deletions(-) create mode 100644 atom.go create mode 100644 example/list.txt create mode 100644 example/main.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 regular.go create mode 100644 testdata/reddit-google.rss create mode 100644 testdata/reddit.rss diff --git a/README b/README index 026aa64..9762979 100644 --- a/README +++ b/README @@ -1,23 +1,7 @@ +# go-rss + Simple RSS parser, tested with various feeds. -License: Public Domain - -## Installation - - go get github.com/ungerik/go-rss - ## Usage - - import "github.com/ungerik/go-rss" - - channel, err := rss.Read("https://en.blog.wordpress.com/feed/") - if err != nil { - fmt.Println(err) - } - - fmt.Println(channel.Title) - - for _, item := range channel.Item { - fmt.Println(item.Title) - } +See the `example` folder. \ No newline at end of file diff --git a/atom.go b/atom.go new file mode 100644 index 0000000..9aacc2f --- /dev/null +++ b/atom.go @@ -0,0 +1,32 @@ +package rss + +import ( + "encoding/xml" + "net/http" + + "github.com/paulrosania/go-charset/charset" +) + +//Feed struct for RSS +type Feed struct { + Entry []Entry `xml:"entry"` +} + +//Entry struct for each Entry in the Feed +type Entry struct { + ID string `xml:"id"` + Title string `xml:"title"` + Updated string `xml:"updated"` +} + +//Atom parses atom feeds +func Atom(resp *http.Response) (*Feed, error) { + defer resp.Body.Close() + xmlDecoder := xml.NewDecoder(resp.Body) + xmlDecoder.CharsetReader = charset.NewReader + feed := Feed{} + if err := xmlDecoder.Decode(&feed); err != nil { + return nil, err + } + return &feed, nil +} diff --git a/example/list.txt b/example/list.txt new file mode 100644 index 0000000..5f85239 --- /dev/null +++ b/example/list.txt @@ -0,0 +1,16 @@ +http://blog.golang.org/feed.atom +http://feeds.nos.nl/nosnieuwsalgemeen +https://aws.amazon.com/blogs/devops/feed +https://aws.amazon.com/new/feed +https://blog.centos.org/feed +https://cloudblog.withgoogle.com/products/devops-sre/rss +https://devblogs.microsoft.com/devops/feed +https://github.blog/feed +https://github.com/golang/go/releases.atom +https://kubernetes.io/feed.xml +https://stackoverflow.blog//feed +https://ubuntu.com/blog/feed +https://www.docker.com/blog/feed +https://www.theregister.co.uk/data_centre/bofh/headlines.atom +https://www.theregister.co.uk/devops/headlines.atom +https://xkcd.com/rss.xml \ No newline at end of file diff --git a/example/main.go b/example/main.go new file mode 100644 index 0000000..4d9e1cc --- /dev/null +++ b/example/main.go @@ -0,0 +1,57 @@ +package main + +import ( + "bufio" + "fmt" + "log" + "os" + "path/filepath" + + "github.com/ungerik/go-rss" +) + +func main() { + // Read file line by line, see https://stackoverflow.com/a/16615559/2777965 + file, err := os.Open("list.txt") + if err != nil { + log.Fatal(err) + } + defer file.Close() + + scanner := bufio.NewScanner(file) + for scanner.Scan() { + url := scanner.Text() + ext := filepath.Ext(url) + + resp, err := rss.Read(url) + if err != nil { + fmt.Println(err) + } + + if ext == ".atom" { + feed, err := rss.Atom(resp) + if err != nil { + fmt.Println(err) + } + + for _, entry := range feed.Entry { + fmt.Println(entry.Updated + " " + entry.Title) + } + } else { + channel, err := rss.Regular(resp) + if err != nil { + fmt.Println(err) + } + + fmt.Println(channel.Title) + + for _, item := range channel.Item { + time, err := item.PubDate.Parse() + if err != nil { + fmt.Println(err) + } + fmt.Println(time.String() + " " + item.Title) + } + } + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..62d1f34 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/ungerik/go-rss + +go 1.14 + +require github.com/paulrosania/go-charset v0.0.0-20190326053356-55c9d7a5834c diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..d52799a --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/paulrosania/go-charset v0.0.0-20190326053356-55c9d7a5834c h1:P6XGcuPTigoHf4TSu+3D/7QOQ1MbL6alNwrGhcW7sKw= +github.com/paulrosania/go-charset v0.0.0-20190326053356-55c9d7a5834c/go.mod h1:YnNlZP7l4MhyGQ4CBRwv6ohZTPrUJJZtEv4ZgADkbs4= diff --git a/regular.go b/regular.go new file mode 100644 index 0000000..8e0ed69 --- /dev/null +++ b/regular.go @@ -0,0 +1,54 @@ +package rss + +import ( + "encoding/xml" + "net/http" + + "github.com/paulrosania/go-charset/charset" +) + +//Channel struct for RSS +type Channel struct { + Title string `xml:"title"` + Link string `xml:"link"` + Description string `xml:"description"` + Language string `xml:"language"` + LastBuildDate Date `xml:"lastBuildDate"` + Item []Item `xml:"item"` +} + +//ItemEnclosure struct for each Item Enclosure +type ItemEnclosure struct { + URL string `xml:"url,attr"` + Type string `xml:"type,attr"` +} + +//Item struct for each Item in the Channel +type Item struct { + Title string `xml:"title"` + Link string `xml:"link"` + Comments string `xml:"comments"` + PubDate Date `xml:"pubDate"` + GUID string `xml:"guid"` + Category []string `xml:"category"` + Enclosure []ItemEnclosure `xml:"enclosure"` + Description string `xml:"description"` + Author string `xml:"author"` + Content string `xml:"content"` + FullText string `xml:"full-text"` +} + +//Regular parses regular feeds +func Regular(resp *http.Response) (*Channel, error) { + defer resp.Body.Close() + xmlDecoder := xml.NewDecoder(resp.Body) + xmlDecoder.CharsetReader = charset.NewReader + + var rss struct { + Channel Channel `xml:"channel"` + } + if err := xmlDecoder.Decode(&rss); err != nil { + return nil, err + } + return &rss.Channel, nil +} diff --git a/rss.go b/rss.go index c9b730c..ec91a49 100644 --- a/rss.go +++ b/rss.go @@ -1,56 +1,18 @@ -//Package rss provides a Simple RSS parser, tested with various feeds. package rss import ( - "encoding/xml" + "crypto/tls" "net/http" "time" - "crypto/tls" - - "github.com/paulrosania/go-charset/charset" - _ "github.com/paulrosania/go-charset/data" //initialize only ) -const ( - wordpressDateFormat = "Mon, 02 Jan 2006 15:04:05 -0700" -) +const wordpressDateFormat = "Mon, 02 Jan 2006 15:04:05 -0700" //Fetcher interface type Fetcher interface { Get(url string) (resp *http.Response, err error) } -//Channel struct for RSS -type Channel struct { - Title string `xml:"title"` - Link string `xml:"link"` - Description string `xml:"description"` - Language string `xml:"language"` - LastBuildDate Date `xml:"lastBuildDate"` - Item []Item `xml:"item"` -} - -//ItemEnclosure struct for each Item Enclosure -type ItemEnclosure struct { - URL string `xml:"url,attr"` - Type string `xml:"type,attr"` -} - -//Item struct for each Item in the Channel -type Item struct { - Title string `xml:"title"` - Link string `xml:"link"` - Comments string `xml:"comments"` - PubDate Date `xml:"pubDate"` - GUID string `xml:"guid"` - Category []string `xml:"category"` - Enclosure []ItemEnclosure `xml:"enclosure"` - Description string `xml:"description"` - Author string `xml:"author"` - Content string `xml:"content"` - FullText string `xml:"full-text"` -} - //Date type type Date string @@ -90,12 +52,12 @@ func (d Date) MustFormat(format string) string { } //Read a string url and returns a Channel struct, error -func Read(url string) (*Channel, error) { +func Read(url string) (*http.Response, error) { return ReadWithClient(url, http.DefaultClient) } //InsecureRead reads without certificate check -func InsecureRead(url string) (*Channel, error) { +func InsecureRead(url string) (*http.Response, error) { tr := &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, } @@ -106,20 +68,10 @@ func InsecureRead(url string) (*Channel, error) { //ReadWithClient a string url and custom client that must match the Fetcher interface //returns a Channel struct, error -func ReadWithClient(url string, client Fetcher) (*Channel, error) { +func ReadWithClient(url string, client Fetcher) (*http.Response, error) { response, err := client.Get(url) if err != nil { return nil, err } - defer response.Body.Close() - xmlDecoder := xml.NewDecoder(response.Body) - xmlDecoder.CharsetReader = charset.NewReader - - var rss struct { - Channel Channel `xml:"channel"` - } - if err = xmlDecoder.Decode(&rss); err != nil { - return nil, err - } - return &rss.Channel, nil + return response, nil } diff --git a/rss_test.go b/rss_test.go index d440c57..c750419 100644 --- a/rss_test.go +++ b/rss_test.go @@ -1,6 +1,7 @@ package rss import ( + "fmt" "io/ioutil" "net/http" "os" @@ -41,10 +42,17 @@ func TestAllFeedsParse(t *testing.T) { if !strings.HasSuffix(fileName, testFileSuffix) { continue } - channel, err := ReadWithClient(fileName, new(testFetcher)) + + resp, err := ReadWithClient(fileName, new(testFetcher)) if err != nil { t.Fatalf("ReadWithClient(%q) err = %v, expected nil", fileName, err) } + + channel, err := Regular(resp) + if err != nil { + fmt.Println(err) + } + for _, item := range channel.Item { if _, err := item.PubDate.Parse(); err != nil { t.Fatalf("Date Parser(%q) err = %v, expected nil", fileName, err) diff --git a/testdata/reddit-google.rss b/testdata/reddit-google.rss new file mode 100644 index 0000000..de6327f --- /dev/null +++ b/testdata/reddit-google.rss @@ -0,0 +1,336 @@ + + + + 2020-04-04T10:59:23+00:00 + https://www.redditstatic.com/icon.png/ + /r/google.xml + + + For news and announcements from and about Google + Google + + + /u/AutoModerator + https://www.reddit.com/user/AutoModerator + + + <!-- SC_OFF --><div class="md"><p>Have a question you need answered? A new Google product you want to talk about? Ask away here!</p> <p>Recently, we at <a href="/r/Google">/r/Google</a> have noticed a large number of support questions being asked. For a long time, we’ve removed these posts and directed the users to other subreddits, like <a href="/r/techsupport">/r/techsupport</a>. However, we feel that users should be able to ask their Google-related questions here. These monthly threads serve as a hub for all of the support you need, as well as discussion about any Google products.</p> <blockquote> <p><strong>Please note!</strong> Top level comments must be related to the topics discussed above. Any comments made off-topic will be removed at the discretion of the Moderator team.</p> <p><a href="https://discordapp.com/invite/Google"><strong>Discord Server</strong></a> We have made a Discord Server for more in-depth discussions relating to Google and for quicker response to tech support questions.</p> </blockquote> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AutoModerator"> /u/AutoModerator </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/ex4p3v/monthly_discussion_and_support_thread_february/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ex4p3v/monthly_discussion_and_support_thread_february/">[comments]</a></span> + t3_ex4p3v + + 2020-02-01T11:13:12+00:00 + Monthly Discussion and Support Thread - February 2020 + + + + /u/AutoModerator + https://www.reddit.com/user/AutoModerator + + + <!-- SC_OFF --><div class="md"><p>Have a question you need answered? A new Google product you want to talk about? Ask away here!</p> <p>Recently, we at <a href="/r/Google">/r/Google</a> have noticed a large number of support questions being asked. For a long time, we’ve removed these posts and directed the users to other subreddits, like <a href="/r/techsupport">/r/techsupport</a>. However, we feel that users should be able to ask their Google-related questions here. These monthly threads serve as a hub for all of the support you need, as well as discussion about any Google products.</p> <blockquote> <p><strong>Please note!</strong> Top level comments must be related to the topics discussed above. Any comments made off-topic will be removed at the discretion of the Moderator team.</p> <p><a href="https://discordapp.com/invite/Google"><strong>Discord Server</strong></a> We have made a Discord Server for more in-depth discussions relating to Google and for quicker response to tech support questions.</p> </blockquote> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AutoModerator"> /u/AutoModerator </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fsxuui/monthly_discussion_and_support_thread_april_2020/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fsxuui/monthly_discussion_and_support_thread_april_2020/">[comments]</a></span> + t3_fsxuui + + 2020-04-01T11:15:44+00:00 + Monthly Discussion and Support Thread - April 2020 + + + + /u/ncdriver + https://www.reddit.com/user/ncdriver + + + <!-- SC_OFF --><div class="md"><p>VentureBeat: Google’s AI accurately predicts physicians’ prescribing decisions 75% of the time. <a href="https://venturebeat.com/2020/04/02/googles-ai-predicts-physicians-prescribing-decisions-75-of-the-time/">https://venturebeat.com/2020/04/02/googles-ai-predicts-physicians-prescribing-decisions-75-of-the-time/</a></p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ncdriver"> /u/ncdriver </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fulxy8/googles_ai_accurately_predicts_physicians/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fulxy8/googles_ai_accurately_predicts_physicians/">[comments]</a></span> + t3_fulxy8 + + 2020-04-04T02:42:43+00:00 + Google’s AI accurately predicts physicians’ prescribing decisions 75% of the time + + + + /u/dootah + https://www.reddit.com/user/dootah + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fuqrqj/open_letter_to_google_not_compliant_two_words/"> <img src="https://b.thumbs.redditmedia.com/HRXr8Lpz-r-l3wqLrGDCNDw-Pr4zvFkDl7TshMbl03g.jpg" alt="Open Letter to Google - ‍‘Not compliant’ – Two words that are killing Coronavirus app innovation" title="Open Letter to Google - ‍‘Not compliant’ – Two words that are killing Coronavirus app innovation" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/dootah"> /u/dootah </a> <br/> <span><a href="https://www.mysymptoms.app/open-letter-to-google-apple-my-symptoms-app">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fuqrqj/open_letter_to_google_not_compliant_two_words/">[comments]</a></span> </td></tr></table> + t3_fuqrqj + + 2020-04-04T09:31:01+00:00 + Open Letter to Google - ‍‘Not compliant’ – Two words that are killing Coronavirus app innovation + + + + /u/wewewawa + https://www.reddit.com/user/wewewawa + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fttxds/california_governor_says_we_need_more_googles_as/"> <img src="https://b.thumbs.redditmedia.com/WrQUEx1Qt3SqCCr58IJgNGnJM-go_XU1Yl4Kvs7Kqec.jpg" alt="California governor says ‘We need more Googles’ as company offers free Wi-Fi and Chromebooks to students" title="California governor says ‘We need more Googles’ as company offers free Wi-Fi and Chromebooks to students" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/wewewawa"> /u/wewewawa </a> <br/> <span><a href="https://www.cnbc.com/2020/04/01/coronavirus-google-offers-wi-fi-chromebooks-to-california-students.html">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fttxds/california_governor_says_we_need_more_googles_as/">[comments]</a></span> </td></tr></table> + t3_fttxds + + 2020-04-02T20:31:28+00:00 + California governor says ‘We need more Googles’ as company offers free Wi-Fi and Chromebooks to students + + + + /u/Sscoops + https://www.reddit.com/user/Sscoops + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/ftybo4/googles_new_3d_search_bring_it_to_life_ar_feature/"> <img src="https://b.thumbs.redditmedia.com/IMxQH5EaGqLpF4feIYhqdWKswlsPNsPOOu8H7sXJuYY.jpg" alt="Google's new 3D search, bring it to life AR feature" title="Google's new 3D search, bring it to life AR feature" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Sscoops"> /u/Sscoops </a> <br/> <span><a href="https://v.redd.it/yu2xowi42iq41">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftybo4/googles_new_3d_search_bring_it_to_life_ar_feature/">[comments]</a></span> </td></tr></table> + t3_ftybo4 + + 2020-04-03T00:46:08+00:00 + Google's new 3D search, bring it to life AR feature + + + + /u/acoster + https://www.reddit.com/user/acoster + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu419w/new_google_launch_covid19_community_mobility/"> <img src="https://b.thumbs.redditmedia.com/mYZISGMzXBP5UJVjdgKX1VLDkfmqcQs-j2JQWfOXVPE.jpg" alt="New Google &quot;launch&quot;: COVID-19 Community Mobility Report" title="New Google &quot;launch&quot;: COVID-19 Community Mobility Report" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/acoster"> /u/acoster </a> <br/> <span><a href="https://www.google.com/covid19/mobility/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu419w/new_google_launch_covid19_community_mobility/">[comments]</a></span> </td></tr></table> + t3_fu419w + + 2020-04-03T07:36:12+00:00 + New Google "launch": COVID-19 Community Mobility Report + + + + /u/bassetisanasset + https://www.reddit.com/user/bassetisanasset + + + <!-- SC_OFF --><div class="md"><p>I have a pixel and love everything about it. The predictive text is so infuriating that it makes me want to go back to iOS.</p> <p>Does anyone have luck using an iPhone when everything else in your home is Google? </p> <p>I&#39;m constantly having to retype and delete while writing. This was never an issue on iPhone. It can be a word like better and if I type bettwr it will leave it. </p> <p>I love the pixel in every other way. I just wonder if anyone&#39;s gone from the amazing integration of the pixel and their other home device and then back to iOS without feeling limited.</p> <p>This is all because of how bad gboard is. And yes, I&#39;ve tried 3rd party keyboards. I&#39;ve had to hir the backspace a dozen times jn this sentence alone. I can&#39;t deal anymore.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/bassetisanasset"> /u/bassetisanasset </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fuecz2/using_google_home_and_assistant_with_iphone/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fuecz2/using_google_home_and_assistant_with_iphone/">[comments]</a></span> + t3_fuecz2 + + 2020-04-03T19:07:03+00:00 + Using Google home and assistant with iphone + + + + /u/csrabbit + https://www.reddit.com/user/csrabbit + + + <!-- SC_OFF --><div class="md"><p>When you google a &quot;topic + &#39;reddit&#39;&quot; now google returns incorrect results by date.</p> <p>It will return articles that are years old as days old articles because below the old article on the reddit page reddit lists the newly posted articles in the sub with more recent dates and for some reason google is grabbing that date data instead of the actual date of the primary returned article.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/csrabbit"> /u/csrabbit </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fucvcu/google_not_returning_reddit_results_properly/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fucvcu/google_not_returning_reddit_results_properly/">[comments]</a></span> + t3_fucvcu + + 2020-04-03T17:45:32+00:00 + Google not returning reddit results properly because of new.reddit's layout + + + + /u/Constant_Sandwich + https://www.reddit.com/user/Constant_Sandwich + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu8w4v/google_keeps_supervpn_on_play_store_despite/"> <img src="https://b.thumbs.redditmedia.com/CA2zGqH40LJ57Rt2RafBgJPF5-8HNhxpZTCLqQP8M7I.jpg" alt="Google Keeps SuperVPN on Play Store Despite Vulnerability" title="Google Keeps SuperVPN on Play Store Despite Vulnerability" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Constant_Sandwich"> /u/Constant_Sandwich </a> <br/> <span><a href="https://vpnpro.com/blog/google-confirms-supervpn-vulnerability-but-keeps-it-on-play-store/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu8w4v/google_keeps_supervpn_on_play_store_despite/">[comments]</a></span> </td></tr></table> + t3_fu8w4v + + 2020-04-03T13:59:30+00:00 + Google Keeps SuperVPN on Play Store Despite Vulnerability + + + + /u/mbsw1110 + https://www.reddit.com/user/mbsw1110 + + + <!-- SC_OFF --><div class="md"><p>I&#39;m doing work from home thanks to corona, and I&#39;m having issues running meetings with my mic through Google Meet. When coworkers run the meeting they don&#39;t seem to have an issue, but when I start it I keep getting a message that says my mic has been turned off due to the size of the call. There were only 14 people in the call, but other people are leading calls with 80 people and don&#39;t seem to have an issue. Any help would be great!!</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mbsw1110"> /u/mbsw1110 </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fu8vft/google_meet_help/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu8vft/google_meet_help/">[comments]</a></span> + t3_fu8vft + + 2020-04-03T13:58:18+00:00 + Google Meet Help + + + + /u/CheeseBoy4231 + https://www.reddit.com/user/CheeseBoy4231 + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/ftanhs/holy_shit/"> <img src="https://b.thumbs.redditmedia.com/8bs6DbUbMKTQP79BDguYJZ_NWKwgtl2CXiOp31J3itk.jpg" alt="holy shit" title="holy shit" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/CheeseBoy4231"> /u/CheeseBoy4231 </a> <br/> <span><a href="https://i.redd.it/fle8qp6zdaq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftanhs/holy_shit/">[comments]</a></span> </td></tr></table> + t3_ftanhs + + 2020-04-01T22:56:52+00:00 + holy shit + + + + /u/raja777m + https://www.reddit.com/user/raja777m + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu86kg/gboard_acting_weird_stuttering_happening_since/"> <img src="https://a.thumbs.redditmedia.com/8gGsUDjnyhVYb7_UY90BL3Apc_14Oke3S2xr3j8mwu4.jpg" alt="GBoard acting weird. stuttering happening since yesterday." title="GBoard acting weird. stuttering happening since yesterday." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/raja777m"> /u/raja777m </a> <br/> <span><a href="https://v.redd.it/tbkv4n24llq41">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu86kg/gboard_acting_weird_stuttering_happening_since/">[comments]</a></span> </td></tr></table> + t3_fu86kg + + 2020-04-03T13:12:26+00:00 + GBoard acting weird. stuttering happening since yesterday. + + + + /u/HekBech + https://www.reddit.com/user/HekBech + + + <!-- SC_OFF --><div class="md"><p>Im using my phone and DroidCam and OBS to use my phone as a webcam but when i go into google meet/hangout the camera fails. If theres any questions about anything please ask me.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/HekBech"> /u/HekBech </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fu6ii1/droidcam_and_obs_in_google_meet_not_working/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu6ii1/droidcam_and_obs_in_google_meet_not_working/">[comments]</a></span> + t3_fu6ii1 + + 2020-04-03T11:09:52+00:00 + DroidCam and OBS in Google Meet not working + + + + /u/headline-code + https://www.reddit.com/user/headline-code + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu5ndg/googles_alphabet_inc_to_allow_covid_ads_on_its/"> <img src="https://b.thumbs.redditmedia.com/a5cFPDpEJnXoN3PJhHg06K8MkeT_dapGE1wyJITooFw.jpg" alt="Google's Alphabet Inc to Allow COVID Ads on Its Websites" title="Google's Alphabet Inc to Allow COVID Ads on Its Websites" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/headline-code"> /u/headline-code </a> <br/> <span><a href="https://headlinecode.com/googles-alphabet-inc-to-allow-covid-ads-on-its-websites/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu5ndg/googles_alphabet_inc_to_allow_covid_ads_on_its/">[comments]</a></span> </td></tr></table> + t3_fu5ndg + + 2020-04-03T09:58:02+00:00 + Google's Alphabet Inc to Allow COVID Ads on Its Websites + + + + /u/Reddevil313 + https://www.reddit.com/user/Reddevil313 + + + <!-- SC_OFF --><div class="md"><p>I&#39;m watching Goodellas today and the color is over saturated and the sound is just a few frames out of sync. It wasn&#39;t always like that.</p> <p>I purchased The Departed years ago and it played in letterbox in HD. Now it only plays a cropped, pan-and-scan version. </p> <p>I see no options or settings to change this.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Reddevil313"> /u/Reddevil313 </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/ftyjc1/i_think_im_done_buying_movies_on_google_play/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftyjc1/i_think_im_done_buying_movies_on_google_play/">[comments]</a></span> + t3_ftyjc1 + + 2020-04-03T01:00:07+00:00 + I think I'm done buying movies on Google Play + + + + /u/Cocksellent + https://www.reddit.com/user/Cocksellent + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu9p3a/guy_is_in_live_with_an_egirl/"> <img src="https://b.thumbs.redditmedia.com/cCpHrDs7nY39itYXia557Y1y3SgN1YtMWrhIGEiiO2A.jpg" alt="G-uy is in live with an E-girl" title="G-uy is in live with an E-girl" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Cocksellent"> /u/Cocksellent </a> <br/> <span><a href="https://i.redd.it/i6np1reo8mq41.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu9p3a/guy_is_in_live_with_an_egirl/">[comments]</a></span> </td></tr></table> + t3_fu9p3a + + 2020-04-03T14:48:33+00:00 + G-uy is in live with an E-girl + + + + /u/yayoshorti + https://www.reddit.com/user/yayoshorti + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu15l0/anybody_else_keep_randomly_getting_these_google/"> <img src="https://b.thumbs.redditmedia.com/RjS2QbirrU2QbF3q9JmabWZCpz2bwLQeXbxXvJ5PZSI.jpg" alt="Anybody else keep randomly getting these Google Assistant Headphones notifications? I don't know how to keep them from popping up." title="Anybody else keep randomly getting these Google Assistant Headphones notifications? I don't know how to keep them from popping up." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/yayoshorti"> /u/yayoshorti </a> <br/> <span><a href="https://i.redd.it/18acs3ncziq41.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu15l0/anybody_else_keep_randomly_getting_these_google/">[comments]</a></span> </td></tr></table> + t3_fu15l0 + + 2020-04-03T03:50:55+00:00 + Anybody else keep randomly getting these Google Assistant Headphones notifications? I don't know how to keep them from popping up. + + + + /u/ThreeSixty404 + https://www.reddit.com/user/ThreeSixty404 + + + <!-- SC_OFF --><div class="md"><p>I think in 2020 it&#39;s about time to implement some sort of filtering function, filters defined by the user maybe. To me staying up to date on the latest news is very important, especially if they cover topics I really care about. For that reason I use Google Discover very often on my smartphone, it does a great job. Unfortunately it sometimes causes disasters. I don&#39;t want to seem overdramatic but let&#39;s be honest, nobody wants spoilers about their favorite series, a movie yet to be seen or whatever... Now, for some TV series and movies maybe you can deactivate feeds or stop using the app until you&#39;ve seen them, but the situation is different for Animes since the Manga is usually ahead, so you could imagine what happens.</p> <p>TL;DR: Let&#39;s make Google understand that it&#39;s time to introduce a filtering function for feeds to avoid spoilers...it is sad, really.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ThreeSixty404"> /u/ThreeSixty404 </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/ftt4jr/google_feed_antispoiler_feature/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftt4jr/google_feed_antispoiler_feature/">[comments]</a></span> + t3_ftt4jr + + 2020-04-02T19:49:04+00:00 + Google Feed anti-spoiler feature + + + + /u/Brandonblaze116 + https://www.reddit.com/user/Brandonblaze116 + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu1snd/oh_google_i/"> <img src="https://b.thumbs.redditmedia.com/OlegUhs4WZXKfu5Rinby-SyiPg4gE5B9Yt0ZryM0Y7k.jpg" alt="Oh Google, I-" title="Oh Google, I-" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Brandonblaze116"> /u/Brandonblaze116 </a> <br/> <span><a href="https://i.redd.it/576ex3sc7jq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu1snd/oh_google_i/">[comments]</a></span> </td></tr></table> + t3_fu1snd + + 2020-04-03T04:35:47+00:00 + Oh Google, I- + + + + /u/koavf + https://www.reddit.com/user/koavf + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu3w0d/how_google_ruined_the_internet_superhighway_98/"> <img src="https://b.thumbs.redditmedia.com/FhyUCoUagF6166GxtVMtNgFacSpVQTmyeaSmGL37sRk.jpg" alt="How Google Ruined the Internet — Superhighway 98" title="How Google Ruined the Internet — Superhighway 98" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/koavf"> /u/koavf </a> <br/> <span><a href="https://www.superhighway98.com/google?2">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu3w0d/how_google_ruined_the_internet_superhighway_98/">[comments]</a></span> </td></tr></table> + t3_fu3w0d + + 2020-04-03T07:23:20+00:00 + How Google Ruined the Internet — Superhighway 98 + + + + /u/prat33k__ + https://www.reddit.com/user/prat33k__ + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fu0jzq/not_sure_how_to_enhance_beauty_with_capscium_here/"> <img src="https://b.thumbs.redditmedia.com/IVOfKD1Ea_jP40DM6u2vAxZj7b1UZZGtW4uMT6h65es.jpg" alt="Not sure how to enhance Beauty with Capscium here." title="Not sure how to enhance Beauty with Capscium here." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/prat33k__"> /u/prat33k__ </a> <br/> <span><a href="https://i.redd.it/pekwo9u5siq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fu0jzq/not_sure_how_to_enhance_beauty_with_capscium_here/">[comments]</a></span> </td></tr></table> + t3_fu0jzq + + 2020-04-03T03:10:38+00:00 + Not sure how to enhance Beauty with Capscium here. + + + + /u/Burstar1 + https://www.reddit.com/user/Burstar1 + + + <!-- SC_OFF --><div class="md"><p>I want to search for recipes that use the ingredient &quot;pizza yeast&quot; without listing a billion pizza recipes.</p> <p>How would I do this?</p> <p>My thought was:</p> <p>&quot;pizza yeast&quot; recipe -pizza</p> <p>but this produces no results, and I&#39;m sure this is a syntax error (I get that -pizza invalidates the &quot;pizza yeast&quot;)</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Burstar1"> /u/Burstar1 </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/fttdck/search_phrase_avoiding_subcomponent_of_phrase/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fttdck/search_phrase_avoiding_subcomponent_of_phrase/">[comments]</a></span> + t3_fttdck + + 2020-04-02T20:01:56+00:00 + Search phrase avoiding sub-component of phrase + + + + /u/MuddaxxirKhan + https://www.reddit.com/user/MuddaxxirKhan + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/fttb0h/google_releases_android_11_developer_preview_21/"> <img src="https://b.thumbs.redditmedia.com/jQAsKoD53ukpNHPpDQcloOtqUI2gY9NoR0C02-eYDZA.jpg" alt="Google releases Android 11 Developer Preview 2.1 with bug fixes" title="Google releases Android 11 Developer Preview 2.1 with bug fixes" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/MuddaxxirKhan"> /u/MuddaxxirKhan </a> <br/> <span><a href="https://www.dailytend.com/2020/04/02/google-releases-android-11-developer-preview-2-1-with-bug-fixes/11821/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/fttb0h/google_releases_android_11_developer_preview_21/">[comments]</a></span> </td></tr></table> + t3_fttb0h + + 2020-04-02T19:58:32+00:00 + Google releases Android 11 Developer Preview 2.1 with bug fixes + + + + /u/SkippyVORE + https://www.reddit.com/user/SkippyVORE + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/ftz0rp/help_i_cant_change_my_username_on_google/"> <img src="https://b.thumbs.redditmedia.com/YC69j-nJUBubSKz_pGig8kYOlB8lkVG_7BktxzTmhnU.jpg" alt="Help I can’t change my username on google" title="Help I can’t change my username on google" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SkippyVORE"> /u/SkippyVORE </a> <br/> <span><a href="https://i.redd.it/8rq9cp3eaiq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftz0rp/help_i_cant_change_my_username_on_google/">[comments]</a></span> </td></tr></table> + t3_ftz0rp + + 2020-04-03T01:31:03+00:00 + Help I can’t change my username on google + + + + /u/mati2110 + https://www.reddit.com/user/mati2110 + + + <!-- SC_OFF --><div class="md"><p>at least for me, this change makes gDrive useless for my daily work</p> <p><a href="https://gsuiteupdates.googleblog.com/2020/03/shortcuts-for-google-drive.html">https://gsuiteupdates.googleblog.com/2020/03/shortcuts-for-google-drive.html</a></p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mati2110"> /u/mati2110 </a> <br/> <span><a href="https://www.reddit.com/r/google/comments/ftrwbg/google_drive_add_to_my_drive_changed_to_add/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftrwbg/google_drive_add_to_my_drive_changed_to_add/">[comments]</a></span> + t3_ftrwbg + + 2020-04-02T18:41:57+00:00 + Google Drive “add to my drive” changed to "add shortcut to my drive" + + + + /u/MuddaxxirKhan + https://www.reddit.com/user/MuddaxxirKhan + + + <table> <tr><td> <a href="https://www.reddit.com/r/google/comments/ftsece/google_is_shutting_down_its_crowdsourced_qa_app/"> <img src="https://b.thumbs.redditmedia.com/enhQovxoc_aP-pK4vWBf3fJMTO6NWCFfXcWvrcbpTbY.jpg" alt="Google is shutting down its crowdsourced Q&amp;A app Neighbourly in May" title="Google is shutting down its crowdsourced Q&amp;A app Neighbourly in May" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/MuddaxxirKhan"> /u/MuddaxxirKhan </a> <br/> <span><a href="https://www.dailytend.com/2020/04/03/google-is-shutting-down-its-crowdsourced-qa-app-neighbourly-in-may/11844/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/google/comments/ftsece/google_is_shutting_down_its_crowdsourced_qa_app/">[comments]</a></span> </td></tr></table> + t3_ftsece + + 2020-04-02T19:08:56+00:00 + Google is shutting down its crowdsourced Q&A app Neighbourly in May + + \ No newline at end of file diff --git a/testdata/reddit.rss b/testdata/reddit.rss new file mode 100644 index 0000000..fcd7ec7 --- /dev/null +++ b/testdata/reddit.rss @@ -0,0 +1,310 @@ + + + + + 2020-04-04T10:35:00+00:00 + /.rss + + + reddit: the front page of the internet + + + /u/argo1230 + https://www.reddit.com/user/argo1230 + + + &#32; submitted by &#32; <a href="https://www.reddit.com/user/argo1230"> /u/argo1230 </a> &#32; to &#32; <a href="https://www.reddit.com/r/worldnews/"> r/worldnews </a> <br/> <span><a href="https://morningstaronline.co.uk/article/w/us-blocks-medical-aid-to-cuba-in-show-of-wild-west-brutality">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/worldnews/comments/fuj7fc/us_blocks_medical_aid_to_cuba_in_show_of_wild/">[comments]</a></span> + t3_fuj7fc + + 2020-04-03T23:43:01+00:00 + US blocks medical aid to Cuba in show of ‘wild west brutality’ + + + + /u/farhan9835 + https://www.reddit.com/user/farhan9835 + + + <table> <tr><td> <a href="https://www.reddit.com/r/nextfuckinglevel/comments/fuosur/and_the_award_goes_to/"> <img src="https://b.thumbs.redditmedia.com/91ndYO-oQjl8gkHs2dDyAR2SpnQts_gOMTPc6a56gPw.jpg" alt="And the award goes to...." title="And the award goes to...." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/farhan9835"> /u/farhan9835 </a> &#32; to &#32; <a href="https://www.reddit.com/r/nextfuckinglevel/"> r/nextfuckinglevel </a> <br/> <span><a href="https://v.redd.it/mfmqcxqrwqq41">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/nextfuckinglevel/comments/fuosur/and_the_award_goes_to/">[comments]</a></span> </td></tr></table> + t3_fuosur + + 2020-04-04T06:31:42+00:00 + And the award goes to.... + + + + /u/Ryan8088 + https://www.reddit.com/user/Ryan8088 + + + <table> <tr><td> <a href="https://www.reddit.com/r/interestingasfuck/comments/fuoa9x/for_the_first_time_after_world_war_2_the/"> <img src="https://b.thumbs.redditmedia.com/kb0DbEd59X71L7vvR30aUBWOsMJUwi7-7mWFu_RpZsU.jpg" alt="For the first time after World War 2, the Himalayan Ranges are visible from 230 Km away due to less pollution in lockdown!" title="For the first time after World War 2, the Himalayan Ranges are visible from 230 Km away due to less pollution in lockdown!" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Ryan8088"> /u/Ryan8088 </a> &#32; to &#32; <a href="https://www.reddit.com/r/interestingasfuck/"> r/interestingasfuck </a> <br/> <span><a href="https://i.redd.it/8i1phrhooqq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/interestingasfuck/comments/fuoa9x/for_the_first_time_after_world_war_2_the/">[comments]</a></span> </td></tr></table> + t3_fuoa9x + + 2020-04-04T05:45:23+00:00 + For the first time after World War 2, the Himalayan Ranges are visible from 230 Km away due to less pollution in lockdown! + + + + /u/VertigoLol + https://www.reddit.com/user/VertigoLol + + + &#32; submitted by &#32; <a href="https://www.reddit.com/user/VertigoLol"> /u/VertigoLol </a> &#32; to &#32; <a href="https://www.reddit.com/r/AskReddit/"> r/AskReddit </a> <br/> <span><a href="https://www.reddit.com/r/AskReddit/comments/fuee7e/exinmates_of_reddit_what_was_the_stupidest_thing/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/AskReddit/comments/fuee7e/exinmates_of_reddit_what_was_the_stupidest_thing/">[comments]</a></span> + t3_fuee7e + + 2020-04-03T19:08:52+00:00 + Ex-Inmates of Reddit, what was the stupidest thing you've seen a new inmate do on his first day in prison? + + + + /u/PoliticsModeratorBot + https://www.reddit.com/user/PoliticsModeratorBot + + + <!-- SC_OFF --><div class="md"><p>President Trump is firing Intelligence Community Inspector General Michael Atkinson, two congressional sources confirm to NPR.</p> <p>In a letter to the Senate Intelligence committee chairs, Trump said he &quot;no longer&quot; has the fullest confidence in Atkinson. The letter says the removal will be effective &quot;30 days from today.&quot; Trump added that he would be submitting a new nominee for the position to the Senate &quot;at a later date.&quot;</p> <p>Atkinson first raised concerns about a complaint involving President Trump&#39;s communications with Ukraine, which led to the impeachment inquiry.</p> <hr/> <h2>Submissions that may interest you</h2> <table><thead> <tr> <th>SUBMISSION</th> <th>DOMAIN</th> </tr> </thead><tbody> <tr> <td><a href="https://thehill.com/policy/national-security/491140-trump-fires-intelligence-community-inspector-general-says-he-no">Trump fires intelligence community inspector general who flagged Ukraine whistleblower complaint</a></td> <td>thehill.com</td> </tr> <tr> <td><a href="https://amp.theguardian.com/us-news/2020/apr/04/donald-trump-fires-intelligence-watchdog-michael-atkinson-impeachment">Donald Trump fires intelligence watchdog who sparked impeachment process</a></td> <td>amp.theguardian.com</td> </tr> <tr> <td><a href="https://www.thestar.com/news/world/us/2020/04/03/trump-fires-watchdog-who-handled-ukraine-complaint.html">Trump fires watchdog who handled Ukraine complaint</a></td> <td>thestar.com</td> </tr> <tr> <td><a href="https://www.latimes.com/world-nation/story/2020-04-03/trump-fires-watchdog-who-handled-ukraine-complaint">Trump fires watchdog who handled Ukraine complaint</a></td> <td>latimes.com</td> </tr> <tr> <td><a href="https://www.cnn.com/2020/04/03/politics/trump-fires-inspector-general-michael-atkinson/index">Trump fires intelligence community watchdog who told Congress about whistleblower complaint that led to impeachment</a></td> <td>cnn.com</td> </tr> <tr> <td><a href="https://www.npr.org/2020/04/03/827195027/president-trump-fires-intelligence-community-inspector-general-michael-atkinson?utm_source=dlvr.it&amp;utm_medium=twitter">President Trump Fires Intelligence Community Inspector General Michael Atkinson</a></td> <td>npr.org</td> </tr> <tr> <td><a href="https://www.nytimes.com/2020/04/03/us/inspector-general-intelligence-fired.html">Trump to Fire Intelligence Watchdog Who Had Key Role in Ukraine Complaint</a></td> <td>nytimes.com</td> </tr> <tr> <td><a href="https://www.washingtonpost.com/national-security/trump-says-he-will-fire-intelligence-watchdog-at-center-of-ukraine-allegations-that-led-to-impeachment/2020/04/03/d0b873d4-761c-11ea-87da-77a8136c1a6d_story.html">Trump says he will fire intelligence watchdog at center of Ukraine allegations that led to impeachment</a></td> <td>washingtonpost.com</td> </tr> <tr> <td><a href="https://apnews.com/57def4c165e6f2ea1d4bf1b0091e4101?utm_medium=AP&amp;utm_source=Twitter&amp;utm_campaign=SocialFlow">Trump fires watchdog who handled Ukraine complaint</a></td> <td>apnews.com</td> </tr> <tr> <td><a href="https://edition.cnn.com/2020/04/03/politics/trump-fires-inspector-general-michael-atkinson/">Trump fires intelligence community watchdog who told Congress about whistleblower complaint that led to impeachment</a></td> <td>edition.cnn.com</td> </tr> <tr> <td><a href="https://www.nbcnews.com/politics/national-security/trump-firing-inspector-general-who-flagged-ukraine-whistleblower-complaint-n1176576">Trump firing inspector general who flagged Ukraine whistleblower complaint</a></td> <td>nbcnews.com</td> </tr> <tr> <td><a href="https://www.politico.com/news/2020/04/03/trump-fires-intelligence-community-inspector-general-164287">Trump fires intelligence community inspector general</a></td> <td>politico.com</td> </tr> <tr> <td><a href="https://www.cbc.ca/news/world/trump-watchdog-fired-impeachment-michael-atkinson-1.5521927">Trump fires watchdog who handled complaint that triggered impeachment</a></td> <td>cbc.ca</td> </tr> <tr> <td><a href="https://www.cnn.com/2020/04/03/politics/trump-fires-inspector-general-michael-atkinson/index.html">Trump fires intelligence community watchdog who told Congress about whistleblower complaint that led to impeachment</a></td> <td>cnn.com</td> </tr> <tr> <td><a href="https://www.nytimes.com/2020/04/03/us/trump-inspector-general-intelligence-fired.html?action=click&amp;module=Top%20Stories&amp;pgtype=Homepage">Trump to Fire Intelligence Watchdog Who Had Key Role in Ukraine Complaint</a></td> <td>nytimes.com</td> </tr> <tr> <td><a href="https://www.buzzfeednews.com/article/emmaloop/trump-fires-michael-atkinson-intelligence-impeachment">Trump Is Firing The Intelligence Community Watchdog Who Brought Forward The Whistleblower Complaint</a></td> <td>buzzfeednews.com</td> </tr> <tr> <td><a href="https://www.reuters.com/article/us-usa-trump-inspectorgeneral/trump-fires-intelligence-official-involved-in-his-impeachment-probe-idUSKBN21M04U?il=0">Trump fires intelligence official involved in his impeachment probe</a></td> <td>reuters.com</td> </tr> <tr> <td><a href="https://www.nytimes.com/reuters/2020/04/03/us/politics/03reuters-usa-trump-inspectorgeneral.html">Trump Fires Intelligence Official Involved in His Impeachment Probe</a></td> <td>nytimes.com</td> </tr> </tbody></table> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/PoliticsModeratorBot"> /u/PoliticsModeratorBot </a> &#32; to &#32; <a href="https://www.reddit.com/r/politics/"> r/politics </a> <br/> <span><a href="https://www.reddit.com/r/politics/comments/fumh2n/megathread_president_donald_trump_fires/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/politics/comments/fumh2n/megathread_president_donald_trump_fires/">[comments]</a></span> + t3_fumh2n + + 2020-04-04T03:21:46+00:00 + Megathread: President Donald Trump Fires Intelligence Community Inspector General Michael Atkinson + + + + /u/G2Minion + https://www.reddit.com/user/G2Minion + + + <!-- SC_OFF --><div class="md"><h3>LEC 2020 SPRING PLAYOFFS</h3> <p><a href="https://eu.lolesports.com/en/league/lec">Official page</a> | <a href="https://lol.gamepedia.com/LEC/2020_Season/Spring_Playoffs">Leaguepedia</a> | <a href="http://liquipedia.net/leagueoflegends/LEC/2020/Spring/Playoffs">Liquipedia</a> | <a href="https://www.reddit.com/r/leagueoflegends/comments/fu9zmw/lec_2020_spring_lec_playoffs_day_1_live_discussion/">Live Discussion</a> | <a href="https://eventvods.com/featured/lol?utm_source=reddit&amp;utm_medium=subreddit&amp;utm_campaign=post_match_threads">Eventvods.com</a> | <a href="http://lol.gamepedia.com/New_To_League/Welcome">New to LoL</a> </p> <hr/> <h3><a href="https://twitter.com/LEC/status/1246179333569482755">G2 Esports 2-3 MAD Lions</a></h3> <ul> <li><p><a href="https://i.imgur.com/T2dXath.jpg">Congratulations to <strong>MAD Lions</strong>! With this win they advance to <strong>Winners Bracket Final</strong> of the LEC Spring Playoffs. Meanwhile <strong>G2 Esports</strong> will have another one chance to advance to Semifinals through the <strong>Losers Bracket</strong>!</a></p></li> <li><p><a href="https://i.imgur.com/mTLGD1K.jpg">Player of the Series: <strong>Shad0w</strong></a></p></li> </ul> <p><strong>G2</strong> | <a href="https://lol.gamepedia.com/G2_Esports">Leaguepedia</a> | <a href="http://liquipedia.net/leagueoflegends/G2_Esports">Liquipedia</a> | <a href="https://discordapp.com/invite/G2Esports">Discord</a> | <a href="https://www.g2esports.com/">Website</a> | <a href="https://twitter.com/G2esports">Twitter</a> | <a href="https://www.facebook.com/G2esports">Facebook</a> | <a href="http://www.youtube.com/FollowGamers2">YouTube</a> | <a href="https://www.reddit.com/r/G2eSports">Subreddit</a><br/> <strong>MAD</strong> | <a href="https://lol.gamepedia.com/MAD_Lions">Leaguepedia</a> | <a href="https://liquipedia.net/leagueoflegends/MAD_Lions">Liquipedia</a> | <a href="https://discordapp.com/invite/madlionslol">Discord</a> | <a href="https://madlions.com/">Website</a> | <a href="https://twitter.com/MADLions_LoLEN">Twitter</a> | <a href="https://www.facebook.com/MADLionsLoLES/">Facebook</a> | <a href="https://www.youtube.com/channel/UC30f1UTFNXfcGcrsojwOpSw">YouTube</a> </p> <hr/> <h3>MATCH 1: G2 vs. MAD</h3> <p><a href="https://i.imgur.com/i9fKws3.jpg"><strong>Winner: MAD Lions</strong> in 36m</a></p> <p><a href="https://matchhistory.na.leagueoflegends.com/en/#match-details/ESPORTSTMNT05/1430374?gameHash=f639ffa5c5f6ba71">Match History</a> </p> <table><thead> <tr> <th align="left"></th> <th align="center">Bans 1</th> <th align="center">Bans 2</th> <th align="center"><a href="#mt-gold">G</a></th> <th align="center"><a href="#mt-kills">K</a></th> <th align="center"><a href="#mt-towers">T</a></th> <th align="center">D/B</th> </tr> </thead><tbody> <tr> <td align="left"><strong>G2</strong></td> <td align="center"><a href="#c-leblanc">leblanc</a> <a href="#c-taric">taric</a> <a href="#c-renekton">renekton</a></td> <td align="center"><a href="#c-ornn">ornn</a> <a href="#c-qiyana">qiyana</a></td> <td align="center">63.9k</td> <td align="center">17</td> <td align="center">5</td> <td align="center"><a href="#mt-cloud">C</a><sup>1</sup> <a href="#mt-ocean">O</a><sup>5</sup></td> </tr> <tr> <td align="left"><strong>MAD</strong></td> <td align="center"><a href="#c-pantheon">pantheon</a> <a href="#c-senna">senna</a> <a href="#c-thresh">thresh</a></td> <td align="center"><a href="#c-sylas">sylas</a> <a href="#c-corki">corki</a></td> <td align="center">70.7k</td> <td align="center">27</td> <td align="center">11</td> <td align="center"><a href="#mt-herald">H</a><sup>2</sup> <a href="#mt-infernal">I</a><sup>3</sup> <a href="#mt-herald">H</a><sup>4</sup> <a href="#mt-barons">B</a><sup>6</sup> <a href="#mt-ocean">O</a><sup>7</sup> <a href="#mt-barons">B</a><sup>8</sup> <a href="#mt-ocean">O</a><sup>9</sup></td> </tr> </tbody></table> <table><thead> <tr> <th align="right"><strong>G2</strong></th> <th align="right">17-27-36</th> <th align="center"><a href="#mt-kills">vs</a></th> <th align="left">27-17-60</th> <th align="left"><strong>MAD</strong></th> </tr> </thead><tbody> <tr> <td align="right">Wunder <a href="#c-maokai">maokai</a> <sup>3</sup></td> <td align="right">3-6-8</td> <td align="center">TOP</td> <td align="left">6-0-10</td> <td align="left"><sup>3</sup> <a href="#c-aatrox">aatrox</a> Orome</td> </tr> <tr> <td align="right">Jankos <a href="#c-leesin">lee sin</a> <sup>2</sup></td> <td align="right">2-5-9</td> <td align="center">JNG</td> <td align="left">7-1-12</td> <td align="left"><sup>2</sup> <a href="#c-gragas">gragas</a> Shad0w</td> </tr> <tr> <td align="right">PERKZ <a href="#c-lucian">lucian</a> <sup>3</sup></td> <td align="right">8-6-5</td> <td align="center">MID</td> <td align="left">0-6-13</td> <td align="left"><sup>1</sup> <a href="#c-nautilus">nautilus</a> Humanoid</td> </tr> <tr> <td align="right">Caps <a href="#c-syndra">syndra</a> <sup>1</sup></td> <td align="right">4-4-8</td> <td align="center">BOT</td> <td align="left">14-3-7</td> <td align="left"><sup>1</sup> <a href="#c-kalista">kalista</a> Carzzy</td> </tr> <tr> <td align="right">Mikyx <a href="#c-sett">sett</a> <sup>2</sup></td> <td align="right">0-6-6</td> <td align="center">SUP</td> <td align="left">0-7-18</td> <td align="left"><sup>4</sup> <a href="#c-leona">leona</a> Kaiser</td> </tr> </tbody></table> <hr/> <h3>MATCH 2: G2 vs. MAD</h3> <p><a href="https://i.imgur.com/lGNUbmQ.jpg"><strong>Winner: G2 Esports</strong> in 34m</a> </p> <p><a href="https://matchhistory.na.leagueoflegends.com/en/#match-details/ESPORTSTMNT05/1440414?gameHash=72be0a2e2f5d5704">Match History</a> </p> <table><thead> <tr> <th align="left"></th> <th align="center">Bans 1</th> <th align="center">Bans 2</th> <th align="center"><a href="#mt-gold">G</a></th> <th align="center"><a href="#mt-kills">K</a></th> <th align="center"><a href="#mt-towers">T</a></th> <th align="center">D/B</th> </tr> </thead><tbody> <tr> <td align="left"><strong>G2</strong></td> <td align="center"><a href="#c-leblanc">leblanc</a> <a href="#c-renekton">renekton</a> <a href="#c-kalista">kalista</a></td> <td align="center"><a href="#c-leesin">lee sin</a> <a href="#c-gragas">gragas</a></td> <td align="center">68.2k</td> <td align="center">28</td> <td align="center">11</td> <td align="center"><a href="#mt-cloud">C</a><sup>1</sup> <a href="#mt-herald">H</a><sup>2</sup> <a href="#mt-infernal">I</a><sup>3</sup> <a href="#mt-herald">H</a><sup>4</sup> <a href="#mt-mountain">M</a><sup>6</sup> <a href="#mt-barons">B</a><sup>7</sup></td> </tr> <tr> <td align="left"><strong>MAD</strong></td> <td align="center"><a href="#c-pantheon">pantheon</a> <a href="#c-senna">senna</a> <a href="#c-thresh">thresh</a></td> <td align="center"><a href="#c-ezreal">ezreal</a> <a href="#c-aatrox">aatrox</a></td> <td align="center">55.2k</td> <td align="center">16</td> <td align="center">3</td> <td align="center"><a href="#mt-mountain">M</a><sup>5</sup> <a href="#mt-mountain">M</a><sup>8</sup></td> </tr> </tbody></table> <table><thead> <tr> <th align="right"><strong>G2</strong></th> <th align="right">28-16-67</th> <th align="center"><a href="#mt-kills">vs</a></th> <th align="left">16-28-34</th> <th align="left"><strong>MAD</strong></th> </tr> </thead><tbody> <tr> <td align="right">Wunder <a href="#c-sett">sett</a> <sup>3</sup></td> <td align="right">7-3-10</td> <td align="center">TOP</td> <td align="left">2-6-9</td> <td align="left"><sup>4</sup> <a href="#c-maokai">maokai</a> Orome</td> </tr> <tr> <td align="right">Jankos <a href="#c-jarvaniv">jarvan iv</a> <sup>2</sup></td> <td align="right">4-3-17</td> <td align="center">JNG</td> <td align="left">2-5-5</td> <td align="left"><sup>3</sup> <a href="#c-kindred">kindred</a> Shad0w</td> </tr> <tr> <td align="right">PERKZ <a href="#c-rumble">rumble</a> <sup>2</sup></td> <td align="right">9-1-13</td> <td align="center">MID</td> <td align="left">4-3-9</td> <td align="left"><sup>2</sup> <a href="#c-ornn">ornn</a> Humanoid</td> </tr> <tr> <td align="right">Caps <a href="#c-syndra">syndra</a> <sup>1</sup></td> <td align="right">7-6-9</td> <td align="center">BOT</td> <td align="left">8-7-4</td> <td align="left"><sup>1</sup> <a href="#c-aphelios">aphelios</a> Carzzy</td> </tr> <tr> <td align="right">Mikyx <a href="#c-rakan">rakan</a> <sup>3</sup></td> <td align="right">1-3-18</td> <td align="center">SUP</td> <td align="left">0-7-7</td> <td align="left"><sup>1</sup> <a href="#c-tahmkench">tahmkench</a> Kaiser</td> </tr> </tbody></table> <hr/> <h3>MATCH 3: G2 vs. MAD</h3> <p><a href="https://i.imgur.com/48ksUSm.jpg"><strong>Winner: MAD Lions</strong> in 41m</a> </p> <p><a href="https://matchhistory.na.leagueoflegends.com/en/#match-details/ESPORTSTMNT05/1430381?gameHash=a2898736a9e16509">Match History</a> </p> <table><thead> <tr> <th align="left"></th> <th align="center">Bans 1</th> <th align="center">Bans 2</th> <th align="center"><a href="#mt-gold">G</a></th> <th align="center"><a href="#mt-kills">K</a></th> <th align="center"><a href="#mt-towers">T</a></th> <th align="center">D/B</th> </tr> </thead><tbody> <tr> <td align="left"><strong>G2</strong></td> <td align="center"><a href="#c-leblanc">leblanc</a> <a href="#c-renekton">renekton</a> <a href="#c-kalista">kalista</a></td> <td align="center"><a href="#c-yuumi">yuumi</a> <a href="#c-gangplank">gangplank</a></td> <td align="center">73.5k</td> <td align="center">15</td> <td align="center">8</td> <td align="center"><a href="#mt-cloud">C</a><sup>6</sup> <a href="#mt-barons">B</a><sup>8</sup></td> </tr> <tr> <td align="left"><strong>MAD</strong></td> <td align="center"><a href="#c-pantheon">pantheon</a> <a href="#c-senna">senna</a> <a href="#c-syndra">syndra</a></td> <td align="center"><a href="#c-reksai">reksai</a> <a href="#c-gragas">gragas</a></td> <td align="center">77.5k</td> <td align="center">20</td> <td align="center">8</td> <td align="center"><a href="#mt-infernal">I</a><sup>1</sup> <a href="#mt-herald">H</a><sup>2</sup> <a href="#mt-mountain">M</a><sup>3</sup> <a href="#mt-herald">H</a><sup>4</sup> <a href="#mt-cloud">C</a><sup>5</sup> <a href="#mt-cloud">C</a><sup>7-<strong>DS</strong></sup> <a href="#mt-elder">E</a><sup>9</sup> <a href="#mt-barons">B</a><sup>10</sup></td> </tr> </tbody></table> <table><thead> <tr> <th align="right"><strong>G2</strong></th> <th align="right">15-20-29</th> <th align="center"><a href="#mt-kills">vs</a></th> <th align="left">20-15-33</th> <th align="left"><strong>MAD</strong></th> </tr> </thead><tbody> <tr> <td align="right">Wunder <a href="#c-aatrox">aatrox</a> <sup>2</sup></td> <td align="right">4-5-2</td> <td align="center">TOP</td> <td align="left">0-6-7</td> <td align="left"><sup>3</sup> <a href="#c-neeko">neeko</a> Orome</td> </tr> <tr> <td align="right">Jankos <a href="#c-elise">elise</a> <sup>3</sup></td> <td align="right">5-5-4</td> <td align="center">JNG</td> <td align="left">5-0-7</td> <td align="left"><sup>1</sup> <a href="#c-leesin">lee sin</a> Shad0w</td> </tr> <tr> <td align="right">PERKZ <a href="#c-sylas">sylas</a> <sup>3</sup></td> <td align="right">2-2-8</td> <td align="center">MID</td> <td align="left">5-3-5</td> <td align="left"><sup>4</sup> <a href="#c-lucian">lucian</a> Humanoid</td> </tr> <tr> <td align="right">Caps <a href="#c-aphelios">aphelios</a> <sup>1</sup></td> <td align="right">4-4-5</td> <td align="center">BOT</td> <td align="left">8-2-6</td> <td align="left"><sup>2</sup> <a href="#c-ezreal">ezreal</a> Carzzy</td> </tr> <tr> <td align="right">Mikyx <a href="#c-thresh">thresh</a> <sup>2</sup></td> <td align="right">0-4-10</td> <td align="center">SUP</td> <td align="left">2-4-8</td> <td align="left"><sup>1</sup> <a href="#c-sett">sett</a> Kaiser</td> </tr> </tbody></table> <hr/> <h3>MATCH 4: MAD vs. G2</h3> <p><a href="https://i.imgur.com/QuMmaTj.jpg"><strong>Winner: G2 Esports</strong> in 25m</a></p> <p><a href="https://matchhistory.na.leagueoflegends.com/en/#match-details/ESPORTSTMNT05/1430382?gameHash=464b39bcbabd2511">Match History</a> </p> <table><thead> <tr> <th align="left"></th> <th align="center">Bans 1</th> <th align="center">Bans 2</th> <th align="center"><a href="#mt-gold">G</a></th> <th align="center"><a href="#mt-kills">K</a></th> <th align="center"><a href="#mt-towers">T</a></th> <th align="center">D/B</th> </tr> </thead><tbody> <tr> <td align="left"><strong>MAD</strong></td> <td align="center"><a href="#c-pantheon">pantheon</a> <a href="#c-thresh">thresh</a> <a href="#c-sylas">sylas</a></td> <td align="center"><a href="#c-olaf">olaf</a> <a href="#c-aatrox">aatrox</a></td> <td align="center">44.2k</td> <td align="center">11</td> <td align="center">4</td> <td align="center"><a href="#mt-herald">H</a><sup>2</sup> <a href="#mt-infernal">I</a><sup>3</sup> <a href="#mt-herald">H</a><sup>4</sup></td> </tr> <tr> <td align="left"><strong>G2</strong></td> <td align="center"><a href="#c-kalista">kalista</a> <a href="#c-senna">senna</a> <a href="#c-syndra">syndra</a></td> <td align="center"><a href="#c-gragas">gragas</a> <a href="#c-taliyah">taliyah</a></td> <td align="center">48.2k</td> <td align="center">16</td> <td align="center">10</td> <td align="center"><a href="#mt-ocean">O</a><sup>1</sup> <a href="#mt-barons">B</a><sup>5</sup> <a href="#mt-cloud">C</a><sup>6</sup></td> </tr> </tbody></table> <table><thead> <tr> <th align="right"><strong>MAD</strong></th> <th align="right">11-16-16</th> <th align="center"><a href="#mt-kills">vs</a></th> <th align="left">16-12-45</th> <th align="left"><strong>G2</strong></th> </tr> </thead><tbody> <tr> <td align="right">Orome <a href="#c-sett">sett</a> <sup>2</sup></td> <td align="right">3-3-2</td> <td align="center">TOP</td> <td align="left">1-2-9</td> <td align="left"><sup>1</sup> <a href="#c-ornn">ornn</a> Wunder</td> </tr> <tr> <td align="right">Shad0w <a href="#c-elise">elise</a> <sup>3</sup></td> <td align="right">4-3-6</td> <td align="center">JNG</td> <td align="left">3-5-8</td> <td align="left"><sup>3</sup> <a href="#c-leesin">lee sin</a> Jankos</td> </tr> <tr> <td align="right">Humanoid <a href="#c-renekton">renekton</a> <sup>1</sup></td> <td align="right">1-3-2</td> <td align="center">MID</td> <td align="left">8-0-4</td> <td align="left"><sup>4</sup> <a href="#c-cassiopeia">cassiopeia</a> PERKZ</td> </tr> <tr> <td align="right">Carzzy <a href="#c-kaisa">kaisa</a> <sup>2</sup></td> <td align="right">2-4-1</td> <td align="center">BOT</td> <td align="left">2-3-10</td> <td align="left"><sup>1</sup> <a href="#c-ezreal">ezreal</a> Caps</td> </tr> <tr> <td align="right">Kaiser <a href="#c-leona">leona</a> <sup>3</sup></td> <td align="right">1-3-5</td> <td align="center">SUP</td> <td align="left">2-2-14</td> <td align="left"><sup>2</sup> <a href="#c-yuumi">yuumi</a> Mikyx</td> </tr> </tbody></table> <hr/> <h3>MATCH 5: G2 vs. MAD</h3> <p><a href="https://i.imgur.com/ptblofI.jpg"><strong>Winner: MAD Lions</strong> in 39m</a> </p> <p><a href="https://matchhistory.na.leagueoflegends.com/en/#match-details/ESPORTSTMNT05/1440415?gameHash=7c456ac3b113cb">Match History</a></p> <table><thead> <tr> <th align="left"></th> <th align="center">Bans 1</th> <th align="center">Bans 2</th> <th align="center"><a href="#mt-gold">G</a></th> <th align="center"><a href="#mt-kills">K</a></th> <th align="center"><a href="#mt-towers">T</a></th> <th align="center">D/B</th> </tr> </thead><tbody> <tr> <td align="left"><strong>G2</strong></td> <td align="center"><a href="#c-renekton">renekton</a> <a href="#c-leesin">lee sin</a> <a href="#c-ornn">ornn</a></td> <td align="center"><a href="#c-lucian">lucian</a> <a href="#c-irelia">irelia</a></td> <td align="center">63.4k</td> <td align="center">13</td> <td align="center">8</td> <td align="center"><a href="#mt-herald">H</a><sup>2</sup></td> </tr> <tr> <td align="left"><strong>MAD</strong></td> <td align="center"><a href="#c-pantheon">pantheon</a> <a href="#c-senna">senna</a> <a href="#c-thresh">thresh</a></td> <td align="center"><a href="#c-ezreal">ezreal</a> <a href="#c-rakan">rakan</a></td> <td align="center">77.8k</td> <td align="center">34</td> <td align="center">8</td> <td align="center"><a href="#mt-infernal">I</a><sup>1</sup> <a href="#mt-mountain">M</a><sup>3</sup> <a href="#mt-herald">H</a><sup>4</sup> <a href="#mt-ocean">O</a><sup>5</sup> <a href="#mt-ocean">O</a><sup>6-<strong>DS</strong></sup> <a href="#mt-barons">B</a><sup>7</sup> <a href="#mt-elder">E</a><sup>8</sup> <a href="#mt-barons">B</a><sup>9</sup></td> </tr> </tbody></table> <table><thead> <tr> <th align="right"><strong>G2</strong></th> <th align="right">13-34-23</th> <th align="center"><a href="#mt-kills">vs</a></th> <th align="left">34-13-44</th> <th align="left"><strong>MAD</strong></th> </tr> </thead><tbody> <tr> <td align="right">Wunder <a href="#c-kalista">kalista</a> <sup>1</sup></td> <td align="right">3-7-3</td> <td align="center">TOP</td> <td align="left">2-3-13</td> <td align="left"><sup>2</sup> <a href="#c-maokai">maokai</a> Orome</td> </tr> <tr> <td align="right">Jankos <a href="#c-jarvaniv">jarvan iv</a> <sup>2</sup></td> <td align="right">1-5-6</td> <td align="center">JNG</td> <td align="left">16-2-5</td> <td align="left"><sup>3</sup> <a href="#c-olaf">olaf</a> Shad0w</td> </tr> <tr> <td align="right">PERKZ <a href="#c-rumble">rumble</a> <sup>2</sup></td> <td align="right">1-7-3</td> <td align="center">MID</td> <td align="left">8-4-6</td> <td align="left"><sup>4</sup> <a href="#c-qiyana">qiyana</a> Humanoid</td> </tr> <tr> <td align="right">Caps <a href="#c-ziggs">ziggs</a> <sup>3</sup></td> <td align="right">6-9-3</td> <td align="center">BOT</td> <td align="left">7-2-7</td> <td align="left"><sup>1</sup> <a href="#c-syndra">syndra</a> Carzzy</td> </tr> <tr> <td align="right">Mikyx <a href="#c-bard">bard</a> <sup>3</sup></td> <td align="right">2-6-8</td> <td align="center">SUP</td> <td align="left">1-2-13</td> <td align="left"><sup>1</sup> <a href="#c-sett">sett</a> Kaiser</td> </tr> </tbody></table> <hr/> <p><strong>*<a href="https://lol.gamepedia.com/Special:RunQuery/SpoilerFreeSchedule?SFS%5B1%5D=LEC/2020%20Season/Spring%20Season&amp;pfRunQueryFormName=SpoilerFreeSchedule">Spoiler-Free Schedule;</a></strong></p> <p><strong>**<a href="https://na.leagueoflegends.com/en-us/news/game-updates/patch-10-6-notes/">Patch 10.6 Notes: LEC 2020 Spring Playoffs - Vi and Wukong Disabled.</a></strong></p> <hr/> <p><a href="https://postmatch.team">This thread was created by the Post-Match Team</a>.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/G2Minion"> /u/G2Minion </a> &#32; to &#32; <a href="https://www.reddit.com/r/leagueoflegends/"> r/leagueoflegends </a> <br/> <span><a href="https://www.reddit.com/r/leagueoflegends/comments/fugaej/g2_esports_vs_mad_lions_lec_2020_spring_playoffs/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/leagueoflegends/comments/fugaej/g2_esports_vs_mad_lions_lec_2020_spring_playoffs/">[comments]</a></span> + t3_fugaej + + 2020-04-03T20:54:34+00:00 + G2 Esports vs. MAD Lions / LEC 2020 Spring Playoffs - Winners Bracket Round 1 / Post-Match Discussion + + + + /u/haddock420 + https://www.reddit.com/user/haddock420 + + + <table> <tr><td> <a href="https://www.reddit.com/r/todayilearned/comments/fuh9q8/til_in_males_80_to_95_of_rem_sleep_is_normally/"> <img src="https://b.thumbs.redditmedia.com/hEEwX4sF91Ekeno6TEbZCVaIZO76n-JDiiK-xx57znQ.jpg" alt="TIL In males, 80% to 95% of REM sleep is normally accompanied by partial to full penile erection." title="TIL In males, 80% to 95% of REM sleep is normally accompanied by partial to full penile erection." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/haddock420"> /u/haddock420 </a> &#32; to &#32; <a href="https://www.reddit.com/r/todayilearned/"> r/todayilearned </a> <br/> <span><a href="https://en.wikipedia.org/wiki/Sleep#Dreaming">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/todayilearned/comments/fuh9q8/til_in_males_80_to_95_of_rem_sleep_is_normally/">[comments]</a></span> </td></tr></table> + t3_fuh9q8 + + 2020-04-03T21:49:02+00:00 + TIL In males, 80% to 95% of REM sleep is normally accompanied by partial to full penile erection. + + + + /u/BunyipPouch + https://www.reddit.com/user/BunyipPouch + + + <table> <tr><td> <a href="https://www.reddit.com/r/movies/comments/fudrxr/disney_pulls_artemis_fowl_from_theaters_will/"> <img src="https://b.thumbs.redditmedia.com/_s3glPZO2vVKnbg2HEYKP307Ro9EuApYm8I5JF7D3_k.jpg" alt="Disney Pulls 'Artemis Fowl' From Theaters, Will Debut On Disney +" title="Disney Pulls 'Artemis Fowl' From Theaters, Will Debut On Disney +" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/BunyipPouch"> /u/BunyipPouch </a> &#32; to &#32; <a href="https://www.reddit.com/r/movies/"> r/movies </a> <br/> <span><a href="https://www.thewrap.com/artemis-fowl-pulled-disney-plus-streaming/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/movies/comments/fudrxr/disney_pulls_artemis_fowl_from_theaters_will/">[comments]</a></span> </td></tr></table> + t3_fudrxr + + 2020-04-03T18:34:50+00:00 + Disney Pulls 'Artemis Fowl' From Theaters, Will Debut On Disney + + + + + /u/Little_Viking23 + https://www.reddit.com/user/Little_Viking23 + + + <table> <tr><td> <a href="https://www.reddit.com/r/Documentaries/comments/fud90j/whistleblowers_silenced_by_china_could_have/"> <img src="https://a.thumbs.redditmedia.com/l84sw035Ur8n54FX638x8hDqYutnMthj1t149IHVRS8.jpg" alt="Whistleblowers silenced by China could have stopped global coronavirus spread (2020) - Mini Documentary" title="Whistleblowers silenced by China could have stopped global coronavirus spread (2020) - Mini Documentary" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Little_Viking23"> /u/Little_Viking23 </a> &#32; to &#32; <a href="https://www.reddit.com/r/Documentaries/"> r/Documentaries </a> <br/> <span><a href="https://www.youtube.com/watch?v=pEQcvcyzQGE">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/Documentaries/comments/fud90j/whistleblowers_silenced_by_china_could_have/">[comments]</a></span> </td></tr></table> + t3_fud90j + + 2020-04-03T18:06:01+00:00 + Whistleblowers silenced by China could have stopped global coronavirus spread (2020) - Mini Documentary + + + + /u/toobadyettoogood + https://www.reddit.com/user/toobadyettoogood + + + <table> <tr><td> <a href="https://www.reddit.com/r/Damnthatsinteresting/comments/fuph7h/inverted_fish_tank/"> <img src="https://b.thumbs.redditmedia.com/pVuAKgBpxlnnBQqs3qLD7hBeaBpXoFCsD_O8aYtHzeE.jpg" alt="Inverted Fish Tank" title="Inverted Fish Tank" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/toobadyettoogood"> /u/toobadyettoogood </a> &#32; to &#32; <a href="https://www.reddit.com/r/Damnthatsinteresting/"> r/Damnthatsinteresting </a> <br/> <span><a href="https://i.imgur.com/ZawKNl0.gifv">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/Damnthatsinteresting/comments/fuph7h/inverted_fish_tank/">[comments]</a></span> </td></tr></table> + t3_fuph7h + + 2020-04-04T07:34:45+00:00 + Inverted Fish Tank + + + + /u/Frocharocha + https://www.reddit.com/user/Frocharocha + + + <table> <tr><td> <a href="https://www.reddit.com/r/science/comments/fums47/an_antibody_recovered_from_a_survivor_of_the_sars/"> <img src="https://b.thumbs.redditmedia.com/JwYt52pk0bXhYdDlb3e5iLzeKmnFIiknBBMQuQDMQ3g.jpg" alt="An antibody recovered from a survivor of the SARS epidemic in the early 2000s has revealed a potential vulnerability of the new coronavirus at the root of COVID-19." title="An antibody recovered from a survivor of the SARS epidemic in the early 2000s has revealed a potential vulnerability of the new coronavirus at the root of COVID-19." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Frocharocha"> /u/Frocharocha </a> &#32; to &#32; <a href="https://www.reddit.com/r/science/"> r/science </a> <br/> <span><a href="https://science.sciencemag.org/content/early/2020/04/02/science.abb7269.full">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/science/comments/fums47/an_antibody_recovered_from_a_survivor_of_the_sars/">[comments]</a></span> </td></tr></table> + t3_fums47 + + 2020-04-04T03:44:31+00:00 + An antibody recovered from a survivor of the SARS epidemic in the early 2000s has revealed a potential vulnerability of the new coronavirus at the root of COVID-19. + + + + /u/fallingbehind + https://www.reddit.com/user/fallingbehind + + + <table> <tr><td> <a href="https://www.reddit.com/r/Coronavirus/comments/fuo371/washington_state_nonprofit_files_lawsuit_saying/"> <img src="https://a.thumbs.redditmedia.com/BxeoZ2o4KfFaidShK-ueTaDCi17rPiwsyA2o0cc5Bh4.jpg" alt="Washington state nonprofit files lawsuit saying Fox News misled viewers about coronavirus" title="Washington state nonprofit files lawsuit saying Fox News misled viewers about coronavirus" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fallingbehind"> /u/fallingbehind </a> &#32; to &#32; <a href="https://www.reddit.com/r/Coronavirus/"> r/Coronavirus </a> <br/> <span><a href="https://www.seattletimes.com/seattle-news/washington-state-nonprofit-files-lawsuit-seeking-to-stop-fox-news-from-broadcasting-false-information-about-the-coronavirus/?utm_medium=social&amp;utm_campaign=owned_echobox_tw_m&amp;utm_source=Twitter#Echobox=1585969231">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/Coronavirus/comments/fuo371/washington_state_nonprofit_files_lawsuit_saying/">[comments]</a></span> </td></tr></table> + t3_fuo371 + + 2020-04-04T05:28:45+00:00 + Washington state nonprofit files lawsuit saying Fox News misled viewers about coronavirus + + + + /u/throwra0099909009922 + https://www.reddit.com/user/throwra0099909009922 + + + <!-- SC_OFF --><div class="md"><p>I’ve F(23) been dating my boyfriend M(27) for a year. I am 5”4’ and 125lbs. He pursued me. Slowly he keeps making more and more negative comments about my appearance. </p> <p>He made me a workout and eating plan and constantly asks if I follow it. He basically wants me to go vegan. Honestly I’m not into the vegan lifestyle and I don’t eat horrible. When we order in yesterday I got baked ziti. He looked at me and said how could I be ordering this when we both agreed I need to lose weight.</p> <p>Everytime I try to dump him over this, he tells me I don’t understand where he is coming from. He told me I’m average and he wants me to stand out. That he noticed I have low self esteem and he is trying to make me confident and be happy with myself. Everyday he asks me if I did my work outs. </p> <p>He will send me photos of other girls and say if I follow what he says I will look like that. He REALLY pursued me and now I feel like he’s killing my self esteem. Why pursue someone so hard if you aren’t that attracted to them? He told me if I lose fifteen pounds I’ll be perfect.</p> <p>He sends me pictures of women who have post pregnancy bodies or not good bodies at all and he tells me that they are like me, that they are chubby and not curvy. Or he will send me pictures of girls I don’t consider pretty and say if I listen to him I will look like that, I just need to lose weight. I tell him I think I’m thinner than those girls and he tells me that he has better eyes. </p> <p>Honestly at this point I don’t want to break up because I feel no one will find me attractive. I feel like I want his approval. I’ve been wearing baggy clothes because I’m so ashamed of my body. I use to like my body but now I’m ashamed.</p> <p>Why is he dating me if I’m so unattractive? How do I gain my self esteem back? Why pursue me?</p> <p>Edit: I would like to thank everyone for the overwhelming response. I can’t get back to everyone, but I appreciate each and every message. Honestly I didn’t realize my situation was that bad, I am going to assume he had me under control. This really was reassuring and I’m so happy I found this community and made this thread. I broke up with him over text message and explained to him how you talk and treat me is not how you talk to anyone let alone your girlfriend who you are suppose to love. That I hope he changes for the next girl he dates because he’s a miserable person and no one deserves his abuse. I blocked his number, I’m sure he might try to show up at my house, but I just felt the need to end it as soon as possible. I think I’m going to take some time for myself since my self esteem is still in the gutter, but thank you all 💕</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/throwra0099909009922"> /u/throwra0099909009922 </a> &#32; to &#32; <a href="https://www.reddit.com/r/relationship_advice/"> r/relationship_advice </a> <br/> <span><a href="https://www.reddit.com/r/relationship_advice/comments/fubn0u/boyfriend_keeps_trying_to_upgrade_or_improve_me/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/relationship_advice/comments/fubn0u/boyfriend_keeps_trying_to_upgrade_or_improve_me/">[comments]</a></span> + t3_fubn0u + + 2020-04-03T16:38:22+00:00 + Boyfriend keeps trying to “upgrade” or “improve” me by calling me chubby + + + + /u/Licks_lead_paint + https://www.reddit.com/user/Licks_lead_paint + + + <table> <tr><td> <a href="https://www.reddit.com/r/funny/comments/fum1f5/shelterinplace_coping_levels_measured_in_cartoon/"> <img src="https://b.thumbs.redditmedia.com/0WMJmtS6k5lZz3qsWUWAFl7l0bFLuE_YTr2qiq7OheI.jpg" alt="Shelter-in-place coping levels measured in cartoon bears" title="Shelter-in-place coping levels measured in cartoon bears" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Licks_lead_paint"> /u/Licks_lead_paint </a> &#32; to &#32; <a href="https://www.reddit.com/r/funny/"> r/funny </a> <br/> <span><a href="https://i.redd.it/mnjqhpvdtpq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/funny/comments/fum1f5/shelterinplace_coping_levels_measured_in_cartoon/">[comments]</a></span> </td></tr></table> + t3_fum1f5 + + 2020-04-04T02:49:57+00:00 + Shelter-in-place coping levels measured in cartoon bears + + + + /u/kayasphotographs + https://www.reddit.com/user/kayasphotographs + + + <table> <tr><td> <a href="https://www.reddit.com/r/pics/comments/fujpol/an_emt_worker_ordered_a_sandwich_from_me_and_gave/"> <img src="https://b.thumbs.redditmedia.com/vXVqqR3WpTuwqU1ufcLF-bh-ZhMbOJjZcZnTkPVbTLc.jpg" alt="An EMT worker ordered a sandwich from me and gave me a real mask" title="An EMT worker ordered a sandwich from me and gave me a real mask" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/kayasphotographs"> /u/kayasphotographs </a> &#32; to &#32; <a href="https://www.reddit.com/r/pics/"> r/pics </a> <br/> <span><a href="https://i.redd.it/2tab2pmq1pq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/pics/comments/fujpol/an_emt_worker_ordered_a_sandwich_from_me_and_gave/">[comments]</a></span> </td></tr></table> + t3_fujpol + + 2020-04-04T00:15:00+00:00 + An EMT worker ordered a sandwich from me and gave me a real mask + + + + /u/positive_X + https://www.reddit.com/user/positive_X + + + <table> <tr><td> <a href="https://www.reddit.com/r/nottheonion/comments/fujzmm/its_not_like_we_have_a_massive_recession_or_worse/"> <img src="https://b.thumbs.redditmedia.com/E20exs5A_RWnu-9wuUpGovrjl1hDt_vuA_a7_5Xz0rw.jpg" alt="&quot;It's Not Like We Have a Massive Recession or Worse,&quot; Says Trump After 10 Million Lost Their Jobs in Two Weeks" title="&quot;It's Not Like We Have a Massive Recession or Worse,&quot; Says Trump After 10 Million Lost Their Jobs in Two Weeks" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/positive_X"> /u/positive_X </a> &#32; to &#32; <a href="https://www.reddit.com/r/nottheonion/"> r/nottheonion </a> <br/> <span><a href="https://www.commondreams.org/news/2020/04/03/its-not-we-have-massive-recession-or-worse-says-trump-after-10-million-lost-their">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/nottheonion/comments/fujzmm/its_not_like_we_have_a_massive_recession_or_worse/">[comments]</a></span> </td></tr></table> + t3_fujzmm + + 2020-04-04T00:32:26+00:00 + "It's Not Like We Have a Massive Recession or Worse," Says Trump After 10 Million Lost Their Jobs in Two Weeks + + + + /u/Daeebro + https://www.reddit.com/user/Daeebro + + + <table> <tr><td> <a href="https://www.reddit.com/r/WatchPeopleDieInside/comments/fuglxp/to_swear_or_not_to_swear_that_is_the_question/"> <img src="https://b.thumbs.redditmedia.com/iGRgJE0l_Ti9KHKTxd6oRzdoFmJ8pE2OwpueW_-WoHY.jpg" alt="To swear or not to swear ... that, is the question." title="To swear or not to swear ... that, is the question." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Daeebro"> /u/Daeebro </a> &#32; to &#32; <a href="https://www.reddit.com/r/WatchPeopleDieInside/"> r/WatchPeopleDieInside </a> <br/> <span><a href="https://v.redd.it/euxxnr705oq41">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/WatchPeopleDieInside/comments/fuglxp/to_swear_or_not_to_swear_that_is_the_question/">[comments]</a></span> </td></tr></table> + t3_fuglxp + + 2020-04-03T21:12:10+00:00 + To swear or not to swear ... that, is the question. + + + + /u/FwhatYoulike + https://www.reddit.com/user/FwhatYoulike + + + <table> <tr><td> <a href="https://www.reddit.com/r/BlackPeopleTwitter/comments/funmvr/freedom_forgone/"> <img src="https://b.thumbs.redditmedia.com/ZkG3_WFzB7UxaL6Yzvi8q33WBJ1IqrV16XV9mkXWpkE.jpg" alt="Freedom forgone." title="Freedom forgone." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/FwhatYoulike"> /u/FwhatYoulike </a> &#32; to &#32; <a href="https://www.reddit.com/r/BlackPeopleTwitter/"> r/BlackPeopleTwitter </a> <br/> <span><a href="https://i.redd.it/7i6lzit2fqq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/BlackPeopleTwitter/comments/funmvr/freedom_forgone/">[comments]</a></span> </td></tr></table> + t3_funmvr + + 2020-04-04T04:51:32+00:00 + Freedom forgone. + + + + /u/UsedToDonateBlood + https://www.reddit.com/user/UsedToDonateBlood + + + <table> <tr><td> <a href="https://www.reddit.com/r/onguardforthee/comments/fu9iir/canada_and_the_us_during_a_time_of_crisis/"> <img src="https://b.thumbs.redditmedia.com/wjZtMl-tAv6sm3N8nOsfww-bapsH3pEjfLbNKiSYOjs.jpg" alt="Canada and the U.S. during a time of crisis" title="Canada and the U.S. during a time of crisis" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/UsedToDonateBlood"> /u/UsedToDonateBlood </a> &#32; to &#32; <a href="https://www.reddit.com/r/onguardforthee/"> r/onguardforthee </a> <br/> <span><a href="https://i.imgur.com/ysthDzf.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/onguardforthee/comments/fu9iir/canada_and_the_us_during_a_time_of_crisis/">[comments]</a></span> </td></tr></table> + t3_fu9iir + + 2020-04-03T14:37:40+00:00 + Canada and the U.S. during a time of crisis + + + + /u/Jwetster + https://www.reddit.com/user/Jwetster + + + <table> <tr><td> <a href="https://www.reddit.com/r/AnimalsBeingBros/comments/fulypq/who_needs_a_fly_swatter/"> <img src="https://b.thumbs.redditmedia.com/l3lNO3ksZ0Fvku4RXMVibrK5deDxE5XSyWTkBKiBpDY.jpg" alt="Who Needs A Fly Swatter ?" title="Who Needs A Fly Swatter ?" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jwetster"> /u/Jwetster </a> &#32; to &#32; <a href="https://www.reddit.com/r/AnimalsBeingBros/"> r/AnimalsBeingBros </a> <br/> <span><a href="https://v.redd.it/xdk9yd5aspq41">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/AnimalsBeingBros/comments/fulypq/who_needs_a_fly_swatter/">[comments]</a></span> </td></tr></table> + t3_fulypq + + 2020-04-04T02:44:18+00:00 + Who Needs A Fly Swatter ? + + + + /u/BullMooseFighter + https://www.reddit.com/user/BullMooseFighter + + + <table> <tr><td> <a href="https://www.reddit.com/r/awfuleverything/comments/ful20a/i_encourage_yall_to_look_her_story_up_theyre_not/"> <img src="https://b.thumbs.redditmedia.com/Ai7Isx66XTOoC9BE2JG2rjOJdcZhApb_1VNYQstLYvU.jpg" alt="I encourage y’all to look her story up. They’re not a good company" title="I encourage y’all to look her story up. They’re not a good company" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/BullMooseFighter"> /u/BullMooseFighter </a> &#32; to &#32; <a href="https://www.reddit.com/r/awfuleverything/"> r/awfuleverything </a> <br/> <span><a href="https://i.redd.it/s3a2otz5hpq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/awfuleverything/comments/ful20a/i_encourage_yall_to_look_her_story_up_theyre_not/">[comments]</a></span> </td></tr></table> + t3_ful20a + + 2020-04-04T01:41:54+00:00 + I encourage y’all to look her story up. They’re not a good company + + + + /u/er1cl1n + https://www.reddit.com/user/er1cl1n + + + <table> <tr><td> <a href="https://www.reddit.com/r/assholedesign/comments/fuo99n/ah_yes_the_essential_permissions_of_an_app/"> <img src="https://b.thumbs.redditmedia.com/WsMSiUKdbTb5RNHIPLWT3aZTTRvriqf6o11i4gI1o8I.jpg" alt="Ah yes, the essential permissions of an app" title="Ah yes, the essential permissions of an app" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/er1cl1n"> /u/er1cl1n </a> &#32; to &#32; <a href="https://www.reddit.com/r/assholedesign/"> r/assholedesign </a> <br/> <span><a href="https://i.redd.it/hr5ez5s8oqq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/assholedesign/comments/fuo99n/ah_yes_the_essential_permissions_of_an_app/">[comments]</a></span> </td></tr></table> + t3_fuo99n + + 2020-04-04T05:42:54+00:00 + Ah yes, the essential permissions of an app + + + + /u/a___blds + https://www.reddit.com/user/a___blds + + + <table> <tr><td> <a href="https://www.reddit.com/r/RoastMe/comments/fub24v/dyed_my_hair_myself_and_now_looking_like_a/"> <img src="https://a.thumbs.redditmedia.com/tqnG1dkfWuJ9FezPqY-ConVY8KGbI9Ywif5ANv9ppm8.jpg" alt="dyed my hair myself and now looking like a tweaker. please destroy me" title="dyed my hair myself and now looking like a tweaker. please destroy me" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/a___blds"> /u/a___blds </a> &#32; to &#32; <a href="https://www.reddit.com/r/RoastMe/"> r/RoastMe </a> <br/> <span><a href="https://i.redd.it/ui7punvhmmq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/RoastMe/comments/fub24v/dyed_my_hair_myself_and_now_looking_like_a/">[comments]</a></span> </td></tr></table> + t3_fub24v + + 2020-04-03T16:06:10+00:00 + dyed my hair myself and now looking like a tweaker. please destroy me + + + + /u/jaytix1 + https://www.reddit.com/user/jaytix1 + + + <table> <tr><td> <a href="https://www.reddit.com/r/gatekeeping/comments/fu9baj/being_this_stupid_shouldnt_be_possible/"> <img src="https://b.thumbs.redditmedia.com/5poBHoQtrpl2LyeGLPjEWgTBcguFooc1g0Zij86OEms.jpg" alt="Being this stupid shouldn't be possible" title="Being this stupid shouldn't be possible" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jaytix1"> /u/jaytix1 </a> &#32; to &#32; <a href="https://www.reddit.com/r/gatekeeping/"> r/gatekeeping </a> <br/> <span><a href="https://i.redd.it/kwqrmxoa4mq41.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/gatekeeping/comments/fu9baj/being_this_stupid_shouldnt_be_possible/">[comments]</a></span> </td></tr></table> + t3_fu9baj + + 2020-04-03T14:25:12+00:00 + Being this stupid shouldn't be possible + + + + /u/pale_and_hungry + https://www.reddit.com/user/pale_and_hungry + + + <table> <tr><td> <a href="https://www.reddit.com/r/pics/comments/fumiyr/saturn_devouring_his_son/"> <img src="https://b.thumbs.redditmedia.com/wO-HqeaswP-sdiZ3p43HPrh74mVYhsaRyyuGbkpe3sE.jpg" alt="Saturn Devouring His Son" title="Saturn Devouring His Son" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/pale_and_hungry"> /u/pale_and_hungry </a> &#32; to &#32; <a href="https://www.reddit.com/r/pics/"> r/pics </a> <br/> <span><a href="https://i.redd.it/a22qscurzpq41.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/pics/comments/fumiyr/saturn_devouring_his_son/">[comments]</a></span> </td></tr></table> + t3_fumiyr + + 2020-04-04T03:25:45+00:00 + Saturn Devouring His Son + + \ No newline at end of file