<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: ekiru</title><link>https://news.ycombinator.com/user?id=ekiru</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 14:39:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ekiru" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ekiru in "U.S. corn-based ethanol worse for the climate than gasoline, study finds"]]></title><description><![CDATA[
<p>In Argentina, by law, the candidates for all national elections for all parties are selected by las PASO (mandatory simultaneous open primaries), which are national simultaneous elections. I don't know if there are many other such countries, but there's one.</p>
]]></description><pubDate>Sat, 25 Feb 2023 00:23:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=34932250</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=34932250</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34932250</guid></item><item><title><![CDATA[New comment by ekiru in "Go: Redefining For Loop Variable Semantics"]]></title><description><![CDATA[
<p>I don't think that's what's happening. In your example with the generator expression, you're calling each lambda as you iterate through the generator, which due to the lazy evaluation of the generator means that the value of the single i variable shared across all each lambda is still only the latest value reached.<p>If you instead fully evaluate the generator expression before calling any of the functions (for example, by passing it to the list constructor), you get the same behavior as the list comprehension case:<p><pre><code>    >>> [f() for f in list(lambda: i for i in range(0, 10))]
    [9, 9, 9, 9, 9, 9, 9, 9, 9, 9]</code></pre></p>
]]></description><pubDate>Wed, 12 Oct 2022 20:31:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=33182665</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=33182665</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33182665</guid></item><item><title><![CDATA[New comment by ekiru in "Covid increases unrelated to vaccination rates"]]></title><description><![CDATA[
<p>>Why doesn't it? Is there some evidence that it does or doesn't.... or is this more of a claim?<p>For the difference to be explained solely by there being more old people because old people are more vulnerable to COVID, I would interpret that to mean that any particular individual is not more or less likely to die depending on whether they live in California or Florida and the overall difference is determined by the difference in age distribution. But, as a limiting case, if all COVID deaths were among elderly people, then a 100%+ higher overall death rate in Florida which has only a 43% larger share of its population who are elderly compared to California would require that deaths per capita among the elderly population would have to be ~40% higher in Florida than in California (2 / 1.43). It's possible that my intuition is making an error here, but I think that the situation with only elderly people dying is the upper bound on how much effect the age distribution can directly have. So, something further is necessary to explain the additional (at least) 40%.<p>> Is there direct evidence that it's masks and not the density and quantity of old people?<p>I don't know whether masks explain the cited difference (I haven't seen convincing evidence but I also haven't really examined the matter), just that age distribution cannot explain the entirety of the difference. At least some age groups must have been more likely to die due to COVID-19 if they lived in Florida than in California during the cited period. It's certainly possible that some portion of that additional difference can be explained through downstream effects of the age distribution, but demonstrating that would require some additional evidence beyond the bare fact of the age distribution differences.<p>My understanding is there were also other policy differences between the two states besides mask requirements, but I do not have any specific reason to believe them to have had a significant (or any) effect, just like I don't have any specific reason to believe that downstream consequences of the age distribution to have had a significant (or any) effect.<p>> I guess it's subjective levels or risk. Is two percent lower infection rate worth it to require everyone to wear masks?<p>I couldn't say, although it's also worth remembering that the positivity rate data in question doesn't tell you anything about the infection rate. It doesn't even tell you what proportion of people who got tested received positive results, since the data in question is about samples rather than patients.</p>
]]></description><pubDate>Tue, 19 Oct 2021 22:40:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=28924641</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=28924641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28924641</guid></item><item><title><![CDATA[New comment by ekiru in "Covid increases unrelated to vaccination rates"]]></title><description><![CDATA[
<p>> So while you're right...by not using per Capita numbers... you're presenting your data in a very disengenuous and truth distorting way.<p>GP actually did speak in terms of per capita numbers (hence "population share"). In absolute numbers, California would exceed Florida in old people; as shares of the population, California has (according to your second link) 14.3% of their population over age 65, while Florida has 20.5%. This works out to be Florida having about 43% more old people per capita than California. If the claim upthread that deaths per capita in Florida more than doubled that in California is accurate, then 43% more people 65 or older per capita does not explain more than 100% more deaths per capita.<p>> Guess what STILL less than California. Guess what positivity rate at the BOTTOM of all states.<p>As to your positivity rate point, I can't confidently speak to whether your argument would be valid if the data was as you said, but your data is not accurate: your link lists Florida at the bottom of all states, but it also lists them as having a 0.0% positivity rate. The latter is, unsurprisingly, not correct, and neither is the former. Going through to its listed data source [1], I calculated positivity rates (number of positive results / number of total results) for each state using the data as of October 11 [2] (filtering for "date" equal to October 11 of this year).<p>Using cumulative numbers ("total_results_reported"), Florida has a positivity rate of 10.4% (18th highest), California has 5.7% (44th highest). Using new results with a date of October 11 ("new_results_reported"), Florida is doing better than earlier: only 4.6% positive (42th highest). Still twice California's 2.1% (53rd, below every other state and every US territory, but ahead of the District of Columbia).<p>1: <a href="https://healthdata.gov/dataset/COVID-19-Diagnostic-Laboratory-Testing-PCR-Testing/j8mb-icvb" rel="nofollow">https://healthdata.gov/dataset/COVID-19-Diagnostic-Laborator...</a><p>2: arbitrarily picked to be far enough back I could be sure I would not be missing data for some states due to reporting lag on the first try.</p>
]]></description><pubDate>Tue, 19 Oct 2021 18:55:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=28921987</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=28921987</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28921987</guid></item><item><title><![CDATA[New comment by ekiru in "Epik Registrar Hacked"]]></title><description><![CDATA[
<p>You're welcome, but I don't think the information/citations I provided do substantiate your point at all. They show that Epik did market itself to right wing sites and individuals (and specifically the alt-right) as early as January 2019 (around 32 months ago),<p>Your claim upthread was:<p>> Even the threads here on HN from back then where epik gets mentioned don't mention that stuff.<p>but the HN search links demonstrate that the threads here on HN from back then where Epik gets mentioned are almost all specifically about that stuff! Not all of that discussion was opposed to Epik, but that wasn't the claim you took issue with.<p>As to your Google Trends link, yes, Gab has never been an especially popular website, and it was not as frequently searched for then as in the period immediately after Donald Trump's twitter account was suspended, but your trends link shows that the Epik coverage (and the only HN thread about Epik to get any traction in 2018 or 2019) coincided with the most searches Gab ever got (as a result of coverage related to the Tree of Life synagogue shooting) prior to Trump's twitter suspension, and was about three times as much as it gets nowadays. It was only exceeded during the week of January 10th through 16th of this year. Epik itself, of course, has never been as frequently searched for as even Gab ( <a href="https://trends.google.com/trends/explore?date=today%205-y&q=Gab,Epik" rel="nofollow">https://trends.google.com/trends/explore?date=today%205-y&q=...</a> ).</p>
]]></description><pubDate>Wed, 15 Sep 2021 19:09:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=28543061</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=28543061</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28543061</guid></item><item><title><![CDATA[New comment by ekiru in "Epik Registrar Hacked"]]></title><description><![CDATA[
<p>Epik started hosting Gab in 2018 (introducing "free speech" as a part of their marketing allegedly following the Gab move [1][2]) and BitChute and 8chan in 2019 [3] (although they stopped hosting 8chan [4] after some of their own upstream providers cut them off or threatened to do so; they may have continued to provide DNS, but I haven't tried to verify this since providing services to the far right on the down low wouldn't count as part of their marketing).<p>External criticism from prominent publications and organizations of Epik for its hosting of far-right sites also dates back at least as far as early 2019 [5][6].<p>HN search provides a story about Epik hosting Gab [7] as the highest popularity story result for "Epik" in the date range Jan 8th 2018 to Dec 30th 2019 (HN search is weird about date ranges and wouldn't let me do 1st to 31st) [8]. The front page of that search result has 5 other stories that are not just incorrectly matching on the word "Epic" or companies named "Epic", one of which is about Epik's "forever domains" service and got 3 points and 2 comments. One is about 8chan getting kicked off its previous provider and mentions them moving to Epik (it appears to be the same article as my [3]), but the comments mostly does not talk about Epik. The other articles are all about Epik hosting Gab or far-right sites but received few upvotes and comments.<p>In the first page of results for the corresponding search for comments [9]  I can find 1 comment from 'sadris talking about Epik's low pricing, 1 comment from 'boultonmark on a non-Gab story describing Epik as seeming to be "the go to company for criminals online", 2 hiring posts from somebody who happens to have epik in their username near the bottom, and two comments using the word "epic" at the bottom. The 14 by my count other comments are all about Epik hosting Gab and/or either hosting or not hosting 8chan.<p>[1]: The SPLC article below [5] says this is the timing, but the Wayback machine[2] doesn't have frequent enough captures of their twitter account for me to verify the timing to more precisely than between<p>[2]: <a href="https://web.archive.org/web/20190119014600/https://twitter.com/epikdotcom" rel="nofollow">https://web.archive.org/web/20190119014600/https://twitter.c...</a> has "Protector of responsible Free Speech." in their bio, tweets calling for popular Youtube channels (including Jordan Peterson) to move to BitChute, and referring to itself as "Alt-tech", which afaict is a term coined to refer specifically to technology providers that alt-right sites & people have moved to as a result of bans or moderation policies on more mainstream providers.<p>[3]: <a href="https://www.theverge.com/2019/8/5/20754943/8chan-epik-offline-voxility-service-cutoff-hate-speech-ban" rel="nofollow">https://www.theverge.com/2019/8/5/20754943/8chan-epik-offlin...</a><p>[4]: <a href="https://www.epik.com/blog/epik-draws-line-on-acceptable-use.html" rel="nofollow">https://www.epik.com/blog/epik-draws-line-on-acceptable-use....</a><p>[5]: <a href="https://www.splcenter.org/hatewatch/2019/01/11/problem-epik-proportions" rel="nofollow">https://www.splcenter.org/hatewatch/2019/01/11/problem-epik-...</a><p>[6]: <a href="https://www.vice.com/en/article/gy4yg9/the-far-right-has-found-a-web-host-savior" rel="nofollow">https://www.vice.com/en/article/gy4yg9/the-far-right-has-fou...</a><p>[7]: <a href="https://news.ycombinator.com/item?id=18383947" rel="nofollow">https://news.ycombinator.com/item?id=18383947</a><p>[8]: <a href="https://hn.algolia.com/?dateEnd=1577750400&dateRange=custom&dateStart=1515456000&page=0&prefix=false&query=epik&sort=byPopularity&type=story" rel="nofollow">https://hn.algolia.com/?dateEnd=1577750400&dateRange=custom&...</a><p>[9]: <a href="https://hn.algolia.com/?dateEnd=1577750400&dateRange=custom&dateStart=1515456000&page=0&prefix=false&query=epik&sort=byPopularity&type=comment" rel="nofollow">https://hn.algolia.com/?dateEnd=1577750400&dateRange=custom&...</a></p>
]]></description><pubDate>Wed, 15 Sep 2021 16:38:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=28541279</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=28541279</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28541279</guid></item><item><title><![CDATA[New comment by ekiru in "Jewish Problems (2011)"]]></title><description><![CDATA[
<p>The "A personal story of Tanya Khovanova" section at the start of the article itself describes the method more explicity: "One of the methods they used for doing this was to give the unwanted students a different set of problems on their oral exam."<p>The introduction adds that the Jewish (or otherwise "undesirable") students "were given these problems one after another until they failed one of them, at which point they were given a failing mark."</p>
]]></description><pubDate>Wed, 11 Aug 2021 07:05:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=28138960</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=28138960</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28138960</guid></item><item><title><![CDATA[New comment by ekiru in "Jeffrey Epstein’s Harvard connections show how money can distort research"]]></title><description><![CDATA[
<p>to claim he absolutely assisted, you actually just need to presume that he did something that helped. You can argue with those other points to try to argue about whether or to what extent it was a bad thing to do, but those arguments, even if valid, do not change the bare fact that he did in fact assist to some extent in Epstein's legal defense as a favour to his friend who was representing Epstein.<p>Though Pinker himself has said he regrets having provided that aid, so I don't think he himself fully agrees with you if you want to argue against it being something he should not have done.</p>
]]></description><pubDate>Tue, 25 Aug 2020 20:04:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=24275499</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=24275499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24275499</guid></item><item><title><![CDATA[New comment by ekiru in "Elite do-gooders 'fixing' the world are part of the problem: Giridharadas"]]></title><description><![CDATA[
<p>Rayiner's own positive examples did not fulfill that blueprint, either, with the exception, I think, of Japan.</p>
]]></description><pubDate>Wed, 12 Aug 2020 20:34:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=24136613</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=24136613</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24136613</guid></item><item><title><![CDATA[New comment by ekiru in "Andrew Yang's Presidential Bid Is So 21st Century"]]></title><description><![CDATA[
<p>I’m not sure if you’re speaking of the US or elsewhere, but here in the US this really is not at all how it works.<p>When my family was on food stamps, if we mismanaged our money and food stamps one month (spent them too inefficiently, accidentally let some food spoil, or such), then, yes, society would absolutely have let us starve (though not in the streets, as we did own our house and were in a rural area). We might have been able to get some further help from family or friends, but not from any form of welfare.</p>
]]></description><pubDate>Mon, 01 Apr 2019 20:38:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=19547970</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=19547970</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19547970</guid></item><item><title><![CDATA[New comment by ekiru in "CERN cuts ties with 'sexist' scientist Alessandro Strumia"]]></title><description><![CDATA[
<p>'Cultural Marxism' is an overtly antisemitic conspiracy theory claiming a devious plot by certain Jewish academics a plot to subvert "western civilization" and attributing their influence as the cause of myriad social and political stances/events/developments that the advocates of this conspiracy theory disapprove of.</p>
]]></description><pubDate>Sat, 09 Mar 2019 19:53:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=19348101</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=19348101</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19348101</guid></item><item><title><![CDATA[New comment by ekiru in "Apple restores Google’s internal iOS apps after certificate misuse punishment"]]></title><description><![CDATA[
<p>The comment you linked discusses the source of a different project, doesn't it?</p>
]]></description><pubDate>Sun, 03 Feb 2019 10:07:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=19068737</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=19068737</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19068737</guid></item><item><title><![CDATA[New comment by ekiru in "Ask HN: End-to-end encrypted online spreadsheet tool"]]></title><description><![CDATA[
<p>Yes, the server can straightforwardly, any time you load the application, serve to you (including to specifically you, a single target, making it much less likely to be noticed), a modified version of the JavaScript powering that client-side encryption which will send the plaintext off to the server.</p>
]]></description><pubDate>Wed, 17 Oct 2018 06:39:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=18236675</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=18236675</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18236675</guid></item><item><title><![CDATA[New comment by ekiru in "What Men and Women Consider Hardcore Gaming Are Not The Same"]]></title><description><![CDATA[
<p>Aren't you assuming (probably incorrectly) that all hardcore gamers rated Competition more highly than all core/casual gamers?<p>I'm not sure how much less weird allowing for that makes things, but your reasoning for concluding that hardcore gamers with lower Competition scores than the hardcore average make up only 4% of the sample isn't valid.<p>For example, if half of the hardcore gamers (around 10.5% of the sample) are above the hardcore average and half below, that would put about 81% of the nonhardcore gamers (about 63.5% of the full sample) below the hardcore average and the rest above (about 19% of the full sample).</p>
]]></description><pubDate>Thu, 02 Aug 2018 14:58:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=17671936</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17671936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17671936</guid></item><item><title><![CDATA[New comment by ekiru in "Departing Facebook security officer advocated for shifts in company’s culture"]]></title><description><![CDATA[
<p>> Yet if a business used that line to refuse service to a minority, a religious person or atheist, a pro-choice advocate, or a LGBT person (in a nation where these are not protected groups or in a time before those groups were protected), you'd be up in arms about it even though it's the exact same excuse. See the double standard now?<p>In fact, major social media sites such as Youtube and Twitter frequently ban or otherwise sanction queer people for talking about their sexuality or gender and approximately no one cares.</p>
]]></description><pubDate>Wed, 25 Jul 2018 13:24:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=17609036</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17609036</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17609036</guid></item><item><title><![CDATA[New comment by ekiru in "Wave After Wave of Garbage Hits the Dominican Republic"]]></title><description><![CDATA[
<p>A better approach compared to banning things currently needed by disabled people and then, once disabled people object, saying "well, we need to develop better alternatives for disabled people, but we can't let these issues get in the way" would be to first develop alternatives and then, once there are good alternatives that are actually usable and safe for disabled people, ensuring their availability as part of the same policies that reduce or eliminate the use of the environmentally problematic things.<p>There's no reason why the needs of disabled people must conflict with taking care of the environment. The apparent conflict in this situation was introduced because people developed their environmental policy proposals without any awareness of or care for the interests and needs of disabled people: if we do not account for the effects of policies on disabled people when deciding which policies to prioritize and how to implement them, some policies will look artificially more appealing because of our inattention to some of their costs and the policies we do choose to pursue will end up implemented in needlessly harmful ways simply because we weren't paying attention to whether we ended up causing harm to some people.</p>
]]></description><pubDate>Tue, 24 Jul 2018 22:50:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=17605568</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17605568</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17605568</guid></item><item><title><![CDATA[New comment by ekiru in "Wave After Wave of Garbage Hits the Dominican Republic"]]></title><description><![CDATA[
<p>> How hard is it to carry a metal straw with you? You hear news about the ban, and you put a couple plastic ones in your bag until the metal one from amazon arrives.<p>Metal straws are dangerous due to for many disabled people due to the risk of injuring themselves by biting down involuntarily because of the same disabilities which necessitate their use of straws in the first place. For many others, the inflexibility of metal straws mean that they do not actually enable them to drink independently.<p>> Why are people so helpless? Jesus christ, it takes half a second to figure out this solution for yourself.<p>It is indeed very easy to think of this approach. For people with disabilities which make metal straws unusable or dangerous, it probably doesn't take very long to think of why it isn't a solution for them.<p>(As a minor aside, as a person lacking any such disability: metal straws can be quite a painful experience with hot beverages. Although I'm given to understand that it's traditional in Argentina with mate, and my Argentine in-laws seemed much more comfortable doing so at a higher temperature than I was, so I guess it is probably possible to get used to that.)</p>
]]></description><pubDate>Tue, 24 Jul 2018 18:12:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=17603580</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17603580</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17603580</guid></item><item><title><![CDATA[New comment by ekiru in "Wave After Wave of Garbage Hits the Dominican Republic"]]></title><description><![CDATA[
<p>> Reusable straws (both plastic and metal) are available, as are paper and non-paper compostable straws. I don't know of any disability that requires people to use single-use-but-stays-around-forever straws.<p>Many of these alternatives are usable in some contexts for people with some disabilities requiring them to use straws, however, they're all also dangerous or unusable to some disabled people (paper straws can be a choking hazard, rigid straws of all kinds are dangerous for people with tics or other conditions that may lead to them biting down involuntarily, non-paper compostable straws pose allergy risks and are rarely labeled in such a way as to communicate whether they contain possible allergens, several types of reusable or compostable straws can be dangerous in sufficiently hot drinks) and disabled people with some combinations of conditions can end up having all of the alternatives potentially unsafe for them, save disposable non-compostable plastic.<p>> anyone who needs or wants straw should probably be proactive in preparing themselves in case facilities fail, which is simple enough to do.<p>That would be simple for most abled people to do, yes. It would be less simple for those disabled people for whom fetching a straw they brought with them and putting it in their drink would require assistance, which, as it happens, are also people who are rather likely to need straws to drink.<p>> I suspect the problems here are transition issues that'll disappear fairly soon<p>You don't seem to be aware of the problems that disabled people have been pointing out, so I think your suspicion may not be very well founded here.</p>
]]></description><pubDate>Tue, 24 Jul 2018 18:08:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=17603550</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17603550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17603550</guid></item><item><title><![CDATA[New comment by ekiru in "Judge Orders Los Angeles Times to Delete Part of Published Article"]]></title><description><![CDATA[
<p>> Referring to somebody by the wrong pronoun is a criminal offence in Canada.<p>Please cite the text of a law which actually says this or any case where someone has been convicted for this under a law which does not explicitly say it.</p>
]]></description><pubDate>Mon, 16 Jul 2018 14:53:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=17541727</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=17541727</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17541727</guid></item><item><title><![CDATA[New comment by ekiru in "Craigslist takes personals sections offline in response to FOSTA"]]></title><description><![CDATA[
<p>> The only thing mildly surprising to me here is that it took them ~10 years to get the house to do it.<p>Some of the non-profits dedicated to fighting this opposed the bill!</p>
]]></description><pubDate>Fri, 23 Mar 2018 13:26:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=16657822</link><dc:creator>ekiru</dc:creator><comments>https://news.ycombinator.com/item?id=16657822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16657822</guid></item></channel></rss>