<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: one2three4</title><link>https://news.ycombinator.com/user?id=one2three4</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 26 Apr 2026 11:47:12 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=one2three4" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by one2three4 in "Don't start with microservices – monoliths are your friend"]]></title><description><![CDATA[
<p>You do that anyway as per Conway's law.</p>
]]></description><pubDate>Thu, 16 Dec 2021 21:24:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=29584117</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=29584117</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29584117</guid></item><item><title><![CDATA[Sorry, but you're already living in the “Squid Game”]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.welcometothejungle.com/en/articles/why-squid-games-is-not-just-dystopian-fiction">https://www.welcometothejungle.com/en/articles/why-squid-games-is-not-just-dystopian-fiction</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=29390592">https://news.ycombinator.com/item?id=29390592</a></p>
<p>Points: 45</p>
<p># Comments: 105</p>
]]></description><pubDate>Tue, 30 Nov 2021 10:04:03 +0000</pubDate><link>https://www.welcometothejungle.com/en/articles/why-squid-games-is-not-just-dystopian-fiction</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=29390592</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29390592</guid></item><item><title><![CDATA[New comment by one2three4 in "Golang Sucks"]]></title><description><![CDATA[
<p>Honestly the only real argument I've heard for Golang is that it is "coming from Google so it must be good". Every time I've tried to write in this language it feels like I'm hitting my head with a hammer.<p>Google might have very smart and knowledgeable people in it but this language is like a bad overhyped C. See next code that all it is doing is parsing a CSV line:<p>func NewPoint(line string) *Point {<p>tokens := strings.Split(line, ",")<p>if len(tokens) != 4 {<p><pre><code>  return nil

 }

 var err error

 p := new(Point)
 </code></pre>
// why cannot I declare and assign err in one go??<p>p.id_ride, err = strconv.Atoi(tokens[0])<p>if err != nil {<p><pre><code>  return nil

 }

 p.lat, err = strconv.ParseFloat(tokens[1], 32)

 if err != nil {

  return nil

 }

 p.ts, err = strconv.ParseInt(tokens[2], 10, 64)

 if err != nil {

  return nil

 }

 return p
</code></pre>
}<p>most of the code has nothing to do with its functionality - it's just error handling that is plain hideous to write and read. Not to mention all the clutter to just convert an integer and a float.<p>And let's just not go into deeper aspects such as the structs that double as classes and has everyone creating his own style of SOLID and DPs. Or the inconsistent syntax which sometimes looks like traditional OO and othertimes like plain C further confusing users.<p>I find it very hard to believe that this language would have caught on if it weren't for Google pushing for it so aggressively. And I find it so disheartening to realise that after all these years developer productivity and happiness is merely an afterthought for language designers and that marketing and hype are the main drivers.<p>And yes I know the saying "there are languages people complain about and languages that people do not use". I find it worthy of high school gotcha sayings to which I reply that language designers of the majority of programming languages have no clue about how to make a language nice to its users. It's as they know how to design a internal combustion engine and then they put a chair and 4 wheels on it and they dismiss complaints about how unreasonably difficult and miserable the driver experience is.</p>
]]></description><pubDate>Fri, 05 Nov 2021 18:03:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=29122713</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=29122713</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29122713</guid></item><item><title><![CDATA[Golang Sucks]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/swlh/hypocritical-gophers-cc7f06da3f28">https://medium.com/swlh/hypocritical-gophers-cc7f06da3f28</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=29122481">https://news.ycombinator.com/item?id=29122481</a></p>
<p>Points: 3</p>
<p># Comments: 3</p>
]]></description><pubDate>Fri, 05 Nov 2021 17:45:19 +0000</pubDate><link>https://medium.com/swlh/hypocritical-gophers-cc7f06da3f28</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=29122481</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29122481</guid></item><item><title><![CDATA[New comment by one2three4 in "A curated list of books on Software Architecture"]]></title><description><![CDATA[
<p>That's a great and pragmatic suggestion.<p>Pragmatic as in these are not generic solutions/patterns but actual working architectures.<p>Thanks.</p>
]]></description><pubDate>Wed, 30 Jun 2021 12:56:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=27687900</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27687900</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27687900</guid></item><item><title><![CDATA[New comment by one2three4 in "A curated list of books on Software Architecture"]]></title><description><![CDATA[
<p>One afternoon? Hm, it depends on the paper really and how close it is to your daily work.<p>2 pages in FoundationDB paper (<a href="https://www.foundationdb.org/files/fdb-paper.pdf" rel="nofollow">https://www.foundationdb.org/files/fdb-paper.pdf</a>) I knew I was looking at one month's reading material if I really was to grasp everything. It'd be much easier if I worked with DBs and Distributed daily but I don't.<p>But, yes, I see your point.</p>
]]></description><pubDate>Wed, 30 Jun 2021 12:47:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=27687799</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27687799</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27687799</guid></item><item><title><![CDATA[Pfizer and Moderna vaccines likely to produce long-lasting immunity, study finds]]></title><description><![CDATA[
<p>Article URL: <a href="https://theprint.in/health/pfizer-and-moderna-vaccines-likely-to-produce-long-lasting-immunity-study-finds/686423/">https://theprint.in/health/pfizer-and-moderna-vaccines-likely-to-produce-long-lasting-immunity-study-finds/686423/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27685860">https://news.ycombinator.com/item?id=27685860</a></p>
<p>Points: 6</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 30 Jun 2021 07:20:10 +0000</pubDate><link>https://theprint.in/health/pfizer-and-moderna-vaccines-likely-to-produce-long-lasting-immunity-study-finds/686423/</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27685860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27685860</guid></item><item><title><![CDATA[New comment by one2three4 in "New LinkedIn Data Leak Leaves 700M Users Exposed"]]></title><description><![CDATA[
<p>I'm curious. Was Linkedin always so bad at securing its (our) data or things have gone downhill ever since the acquisition?<p>It is becoming a regular thing, almost part of the news cycle. "In other news, yesterday was the biannual data leak from Linkedin".<p>It is outrageous.</p>
]]></description><pubDate>Tue, 29 Jun 2021 14:00:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=27675860</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27675860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27675860</guid></item><item><title><![CDATA[New comment by one2three4 in "A Docker footgun led to a vandal deleting NewsBlur's MongoDB database"]]></title><description><![CDATA[
<p>Is there any easy way to guard against this without putting everything in a VPC?</p>
]]></description><pubDate>Tue, 29 Jun 2021 10:36:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=27674025</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27674025</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27674025</guid></item><item><title><![CDATA[The World Is on Fire and So Is Your Website]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.infoq.com/presentations/moveon-architecture-scalability/?itm_campaign=rightbar_v2&itm_source=infoq&itm_medium=presentations_link&itm_content=link_text">https://www.infoq.com/presentations/moveon-architecture-scalability/?itm_campaign=rightbar_v2&itm_source=infoq&itm_medium=presentations_link&itm_content=link_text</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27628373">https://news.ycombinator.com/item?id=27628373</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 25 Jun 2021 08:27:41 +0000</pubDate><link>https://www.infoq.com/presentations/moveon-architecture-scalability/?itm_campaign=rightbar_v2&amp;itm_source=infoq&amp;itm_medium=presentations_link&amp;itm_content=link_text</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27628373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27628373</guid></item><item><title><![CDATA[China's Accelerating Bid for Chip Supremacy]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.youtube.com/watch?v=SUfjtKtkS2U">https://www.youtube.com/watch?v=SUfjtKtkS2U</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27615151">https://news.ycombinator.com/item?id=27615151</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 24 Jun 2021 08:25:29 +0000</pubDate><link>https://www.youtube.com/watch?v=SUfjtKtkS2U</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27615151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27615151</guid></item><item><title><![CDATA[New comment by one2three4 in "Django for Startup Founders: A better software architecture for SaaS startups"]]></title><description><![CDATA[
<p>> miss languages with better type checking.
What about python type hints?</p>
]]></description><pubDate>Thu, 24 Jun 2021 08:12:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=27615078</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27615078</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27615078</guid></item><item><title><![CDATA[When the Soviet Union Paid Pepsi in Warships]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.atlasobscura.com/articles/soviet-union-pepsi-ships">https://www.atlasobscura.com/articles/soviet-union-pepsi-ships</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27604139">https://news.ycombinator.com/item?id=27604139</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 23 Jun 2021 13:10:47 +0000</pubDate><link>https://www.atlasobscura.com/articles/soviet-union-pepsi-ships</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27604139</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27604139</guid></item><item><title><![CDATA[Those pesky pull request reviews]]></title><description><![CDATA[
<p>Article URL: <a href="https://jessitron.com/2021/03/27/those-pesky-pull-request-reviews/">https://jessitron.com/2021/03/27/those-pesky-pull-request-reviews/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27602350">https://news.ycombinator.com/item?id=27602350</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 23 Jun 2021 08:59:31 +0000</pubDate><link>https://jessitron.com/2021/03/27/those-pesky-pull-request-reviews/</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27602350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27602350</guid></item><item><title><![CDATA[Programming Without Code: The Rise of No-Code Software Development]]></title><description><![CDATA[
<p>Article URL: <a href="https://spectrum.ieee.org/tech-talk/computing/software/programming-without-code-no-code-software-development">https://spectrum.ieee.org/tech-talk/computing/software/programming-without-code-no-code-software-development</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27583321">https://news.ycombinator.com/item?id=27583321</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 21 Jun 2021 19:37:01 +0000</pubDate><link>https://spectrum.ieee.org/tech-talk/computing/software/programming-without-code-no-code-software-development</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27583321</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27583321</guid></item><item><title><![CDATA[Robo Sapiens: Future of Work Primer [Bank of America Report 2021] [pdf]]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bofaml.com/content/dam/boamlimages/documents/articles/ID21_0696/Future_of_Work_primer_Redacted.pdf">https://www.bofaml.com/content/dam/boamlimages/documents/articles/ID21_0696/Future_of_Work_primer_Redacted.pdf</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27537589">https://news.ycombinator.com/item?id=27537589</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 17 Jun 2021 09:07:15 +0000</pubDate><link>https://www.bofaml.com/content/dam/boamlimages/documents/articles/ID21_0696/Future_of_Work_primer_Redacted.pdf</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27537589</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27537589</guid></item><item><title><![CDATA[How to Be a Stoic (2016)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.newyorker.com/magazine/2016/12/19/how-to-be-a-stoic">https://www.newyorker.com/magazine/2016/12/19/how-to-be-a-stoic</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27524805">https://news.ycombinator.com/item?id=27524805</a></p>
<p>Points: 115</p>
<p># Comments: 64</p>
]]></description><pubDate>Wed, 16 Jun 2021 04:08:44 +0000</pubDate><link>https://www.newyorker.com/magazine/2016/12/19/how-to-be-a-stoic</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27524805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27524805</guid></item><item><title><![CDATA[TLA+ is a language for modeling concurrent and distributed programs and systems]]></title><description><![CDATA[
<p>Article URL: <a href="https://lamport.azurewebsites.net/tla/tla.html">https://lamport.azurewebsites.net/tla/tla.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27461237">https://news.ycombinator.com/item?id=27461237</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 10 Jun 2021 14:34:01 +0000</pubDate><link>https://lamport.azurewebsites.net/tla/tla.html</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27461237</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27461237</guid></item><item><title><![CDATA[New comment by one2three4 in "FoundationDB: A distributed, unbundled, transactional key value store [pdf]"]]></title><description><![CDATA[
<p>>> In its newest release, CouchDB [2] (arguably the firstNoSQL system) is being re-built as a layer on top of FoundationDB.<p>That is impressive. Like a framework for implementing noSQL DBs.</p>
]]></description><pubDate>Tue, 08 Jun 2021 12:18:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=27434124</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27434124</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27434124</guid></item><item><title><![CDATA[AI arms race already underway]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.dw.com/en/artificial-intelligence-cyber-warfare-drones-future/a-57769444">https://www.dw.com/en/artificial-intelligence-cyber-warfare-drones-future/a-57769444</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27431572">https://news.ycombinator.com/item?id=27431572</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 08 Jun 2021 07:28:45 +0000</pubDate><link>https://www.dw.com/en/artificial-intelligence-cyber-warfare-drones-future/a-57769444</link><dc:creator>one2three4</dc:creator><comments>https://news.ycombinator.com/item?id=27431572</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27431572</guid></item></channel></rss>