<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: mudiadamz</title><link>https://news.ycombinator.com/user?id=mudiadamz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 12 Apr 2026 13:28:29 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=mudiadamz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Don't Speak Up or You Are Getting Burned by Acid: Andrie Yunus (Indonesia)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.techgalery.com/2026/03/dont-speak-up-or-you-are-getting-burned.html">https://www.techgalery.com/2026/03/dont-speak-up-or-you-are-getting-burned.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47495451">https://news.ycombinator.com/item?id=47495451</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 23 Mar 2026 21:38:36 +0000</pubDate><link>https://www.techgalery.com/2026/03/dont-speak-up-or-you-are-getting-burned.html</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=47495451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47495451</guid></item><item><title><![CDATA[New comment by mudiadamz in "One hundred and one rules of effective living"]]></title><description><![CDATA[
<p>More like how to be mediocre boring life advice</p>
]]></description><pubDate>Tue, 13 May 2025 13:03:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=43972482</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=43972482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43972482</guid></item><item><title><![CDATA[New comment by mudiadamz in "[Show HN] Simple Kafka Web Client: A web based UI for Kafka messages monitoring"]]></title><description><![CDATA[
<p>Features:
- Connect to Kafka Brokers: You can manage connections to different Kafka brokers all in one place.
- Send Messages: Sending messages to Kafka topics is just a few clicks away.
- Listen to Topics: Listen to messages from Kafka topics in real time, right in your browser.
- Filter Topics: Use regular expressions to filter and find exactly what you’re looking for in your topics.
- Responsive Design: The interface is clean and looks great on any device, thanks to Tailwind CSS.
- Persistent Connections: Your Kafka connections are saved in an SQLite database, so you don’t have to re-enter them every time.</p>
]]></description><pubDate>Fri, 16 Aug 2024 11:18:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=41265268</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=41265268</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41265268</guid></item><item><title><![CDATA[[Show HN] Simple Kafka Web Client: A web based UI for Kafka messages monitoring]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.techgalery.com/2024/08/introducing-kafka-web-client-user.html">https://www.techgalery.com/2024/08/introducing-kafka-web-client-user.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41265267">https://news.ycombinator.com/item?id=41265267</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Fri, 16 Aug 2024 11:18:30 +0000</pubDate><link>https://www.techgalery.com/2024/08/introducing-kafka-web-client-user.html</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=41265267</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41265267</guid></item><item><title><![CDATA[New comment by mudiadamz in "Show HN: If YouTube had actual channels"]]></title><description><![CDATA[
<p>I know it's no way possible to add any Hollywood Movies, but if it's possible it would just look like a real TV</p>
]]></description><pubDate>Wed, 14 Aug 2024 17:43:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=41248621</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=41248621</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41248621</guid></item><item><title><![CDATA[New comment by mudiadamz in "Computer scientists invent an efficient new way to count"]]></title><description><![CDATA[
<p><p><pre><code>  import math
  import random</code></pre></p>
]]></description><pubDate>Fri, 17 May 2024 13:28:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=40389633</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=40389633</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40389633</guid></item><item><title><![CDATA[New comment by mudiadamz in "Computer scientists invent an efficient new way to count"]]></title><description><![CDATA[
<p>You can just replace it with something like: print ('Invalid thresh or something')</p>
]]></description><pubDate>Fri, 17 May 2024 13:27:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=40389622</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=40389622</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40389622</guid></item><item><title><![CDATA[New comment by mudiadamz in "Computer scientists invent an efficient new way to count"]]></title><description><![CDATA[
<p>Python implementation:<p><pre><code>  def streaming_algorithm(A, epsilon, delta):
      # Initialize parameters
      p = 1
      X = set()
      thresh = math.ceil((12 / epsilon ** 2) * math.log(8 * len(A) / delta))

      # Process the stream
      for ai in A:
          if ai in X:
              X.remove(ai)
          if random.random() < p:
              X.add(ai)
          if len(X) == thresh:
              X = {x for x in X if random.random() >= 0.5}
              p /= 2
              if len(X) == thresh:
                  return '⊥'

      return len(X) / p


  # Example usage
  A = [1, 2, 3, 1, 2, 3]
  epsilon = 0.1
  delta = 0.01

  output = streaming_algorithm(A, epsilon, delta)
  print(output)</code></pre></p>
]]></description><pubDate>Fri, 17 May 2024 13:05:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=40389460</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=40389460</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40389460</guid></item><item><title><![CDATA[New comment by mudiadamz in "Build your own Docker with Linux namespaces, cgroups, and chroot"]]></title><description><![CDATA[
<p>Yes that's the problem, Chat GPT isn't always right</p>
]]></description><pubDate>Tue, 27 Jun 2023 06:26:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=36489528</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=36489528</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36489528</guid></item><item><title><![CDATA[New comment by mudiadamz in "Build your own Docker with Linux namespaces, cgroups, and chroot"]]></title><description><![CDATA[
<p>The article is like Chat GPT generated</p>
]]></description><pubDate>Tue, 27 Jun 2023 04:27:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=36488911</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=36488911</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36488911</guid></item><item><title><![CDATA[New comment by mudiadamz in "Show HN: Non.io, a Reddit-like platform Ive been working on for the last 4 years"]]></title><description><![CDATA[
<p>Back when I don't even know what PHP is, i was dreaming of creating this Facebook like social media. Now 7 years later, I have the knowledge of creating. I was not even interested in creating another social media, just because I know I am nobody, I am not an MIT graduate, I don't have a network, my social/communication is terrible. Now I am settled on a working day job, those big ambitions are buried when I fully grasp the reality that I am not gonna be that one lucky enough to launch a successful billion dollar social networking app.</p>
]]></description><pubDate>Tue, 13 Jun 2023 10:33:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=36308136</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=36308136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36308136</guid></item><item><title><![CDATA[The surprising downsides of being clever (2015)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bbc.com/future/article/20150413-the-downsides-of-being-clever">https://www.bbc.com/future/article/20150413-the-downsides-of-being-clever</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=32294852">https://news.ycombinator.com/item?id=32294852</a></p>
<p>Points: 9</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 31 Jul 2022 11:30:43 +0000</pubDate><link>https://www.bbc.com/future/article/20150413-the-downsides-of-being-clever</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=32294852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32294852</guid></item><item><title><![CDATA[New comment by mudiadamz in "Happy New Year HN"]]></title><description><![CDATA[
<p>making comment in HN is very scary</p>
]]></description><pubDate>Fri, 01 Jan 2021 06:21:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=25601327</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=25601327</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25601327</guid></item><item><title><![CDATA[New comment by mudiadamz in "100k Stars"]]></title><description><![CDATA[
<p>This method used to work for me, but i don't know lately it's barely even touch my feeling about the very vast universe, and how tiny and unsignificant we are.</p>
]]></description><pubDate>Wed, 07 Oct 2020 07:52:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=24706175</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=24706175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24706175</guid></item><item><title><![CDATA[New comment by mudiadamz in "US travel firm $4.5M ransom negotiation open chat"]]></title><description><![CDATA[
<p>Bitcoin turn to be ugly currency, the price will slump very soon.</p>
]]></description><pubDate>Mon, 03 Aug 2020 05:14:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=24034421</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=24034421</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24034421</guid></item><item><title><![CDATA[New comment by mudiadamz in "Show HN: UI Playbook – A documented collection of UI components"]]></title><description><![CDATA[
<p>Not as i expected but, great work, continue, maybe in the future it doesn't just a display of only 5 different things that i already know, and one of them isn't clickable.</p>
]]></description><pubDate>Wed, 22 Jul 2020 14:53:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=23917663</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=23917663</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23917663</guid></item><item><title><![CDATA[New comment by mudiadamz in "No Paint"]]></title><description><![CDATA[
<p>the first time kind of confused but then i keep going on <a href="https://imgur.com/gallery/3ETezat" rel="nofollow">https://imgur.com/gallery/3ETezat</a></p>
]]></description><pubDate>Wed, 17 Jun 2020 06:01:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=23548267</link><dc:creator>mudiadamz</dc:creator><comments>https://news.ycombinator.com/item?id=23548267</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23548267</guid></item></channel></rss>