<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: jaharios</title><link>https://news.ycombinator.com/user?id=jaharios</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 24 May 2026 20:55:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jaharios" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jaharios in "Green card seekers must leave U.S. to apply, Trump administration says"]]></title><description><![CDATA[
<p>So we should strive to maximize companies profits over the citizens?</p>
]]></description><pubDate>Sun, 24 May 2026 01:21:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48253393</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=48253393</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48253393</guid></item><item><title><![CDATA[New comment by jaharios in "Greek Alphabet Cards"]]></title><description><![CDATA[
<p>For χ - χελιδόνι (swallow) with X tail-wings is the best</p>
]]></description><pubDate>Sun, 17 May 2026 00:19:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48164997</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=48164997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48164997</guid></item><item><title><![CDATA[New comment by jaharios in "Classic 7 is a Windows 10 LTSC mod to look 1:1 to Windows 7"]]></title><description><![CDATA[
<p>Just use the well know script to activate it and send a donation to MS or something. The margin of profit from individual keys is nothing.<p>(Can I post the link, to the open source repo? Is it against the rules? I mean MS owns github and has no problem hosting it)</p>
]]></description><pubDate>Thu, 14 May 2026 12:53:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48134689</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=48134689</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48134689</guid></item><item><title><![CDATA[New comment by jaharios in "What happens when you post a real Monet and say it's AI?"]]></title><description><![CDATA[
<p>Seems the poster is the one fooled by the AI more than anything, because most likely the bulk of the replies are bots, so you got AI to criticize AI.</p>
]]></description><pubDate>Thu, 14 May 2026 12:46:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48134620</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=48134620</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48134620</guid></item><item><title><![CDATA[New comment by jaharios in "Firefox 150 release notes for developers (Stable)"]]></title><description><![CDATA[
<p>This seems like a tiny percent of userbase if not personal issue. This can happen to any software for a specific config. Disabling hardware acceleration would most likely fix your issue but this is not a true solution. Also try forcing alternative encodings in youtube. Sadly if the issue is not widespread a fix from any company is not a priority.</p>
]]></description><pubDate>Thu, 23 Apr 2026 15:39:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47877063</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=47877063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47877063</guid></item><item><title><![CDATA[New comment by jaharios in "Python: The Optimization Ladder"]]></title><description><![CDATA[
<p>json.loads is something you don't want to use in a loop if you care for performance at all. Just simple using orjson can give you 3x speed without the need to change anything.</p>
]]></description><pubDate>Sat, 14 Mar 2026 16:54:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47378592</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=47378592</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47378592</guid></item><item><title><![CDATA[New comment by jaharios in "Cloudflare threatens Italy exit over €14M fine"]]></title><description><![CDATA[
<p>The power struggle of global corps and old world Countries are a fine spectacle for us, who have lost our placement in the food chain to the man-made giants.</p>
]]></description><pubDate>Fri, 16 Jan 2026 03:43:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46642755</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=46642755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46642755</guid></item><item><title><![CDATA[New comment by jaharios in "Show HN: I made a small site to share text and files"]]></title><description><![CDATA[
<p>And another one! How long will it last? All bets on the table.</p>
]]></description><pubDate>Fri, 12 Sep 2025 21:55:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45227230</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=45227230</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45227230</guid></item><item><title><![CDATA[Optimizing is not only for better performance]]></title><description><![CDATA[
<p>Developing using the optimize latter approach can lead to worse experience especially when you can save building/compiling time for a project with basic optimization.<p>I found out that I could cut the startup time (importing/ model loading time) in a project in half, after I started optimizing.
(Running a profiler and finding out what takes time and cutting unused imports/stuff from used libraries and doing the work in parallel for time consuming stuff).<p>This lead to faster bug fixing and testing because less time was spend at startup. So I was able to add features and test them with multiple restarts in half the time without loosing focus on the waiting time, making development way more smooth.<p>In conclusion, yeah leave out optimization at start, but as soon you have something working, make sure you are not wasting time while developing.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45046405">https://news.ycombinator.com/item?id=45046405</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 27 Aug 2025 23:07:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=45046405</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=45046405</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45046405</guid></item><item><title><![CDATA[New comment by jaharios in "Left to Right Programming"]]></title><description><![CDATA[
<p>> No wonder people claim typing speed doesn't matter - they can barely think ahead one token, nevermind a statement or function, much less the whole design! Ideally your typing speed should become the bottleneck and you should be able to code "blind", without looking at the screen but merely outputting the code in your mind into the machine as fast as humanly possible. Instead we have barely-"developers" constantly chasing that next tiny dopamine hit of picking from an autocomplete menu. WTF!?<p>If writing code is an automated process for you, you are also begging for AI to be replace you. Just a more advanced one than the code-monkey in the OP.</p>
]]></description><pubDate>Tue, 19 Aug 2025 11:16:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=44950319</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=44950319</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44950319</guid></item><item><title><![CDATA[New comment by jaharios in "Fight Chat Control"]]></title><description><![CDATA[
<p>The pandemic showed that govs can push what they want with minimal resistance and having the public on each other throats. People are also fatigued and isolated more than ever, perfect time to seize total control.</p>
]]></description><pubDate>Sun, 10 Aug 2025 22:14:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=44858765</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=44858765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44858765</guid></item><item><title><![CDATA[New comment by jaharios in "Fight Chat Control"]]></title><description><![CDATA[
<p>A lot of actual pedophiles will be exposed if it was used on politicians, we don't want that.</p>
]]></description><pubDate>Sun, 10 Aug 2025 20:02:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=44857854</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=44857854</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44857854</guid></item><item><title><![CDATA[New comment by jaharios in "Show HN: The current sky at your approximate location, as a CSS gradient"]]></title><description><![CDATA[
<p>I refreshed the page, enabled js, refreshed again and again and finally I gave up thinking it is not loading because it was hugged to death. While reading the comments here it dawned on me that it was just a black background because it is night outside and the paged worked fine from the start...</p>
]]></description><pubDate>Sat, 09 Aug 2025 23:19:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=44851280</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=44851280</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44851280</guid></item><item><title><![CDATA[New comment by jaharios in "Online Collection of Keygen Music"]]></title><description><![CDATA[
<p>The Glitch Mob?</p>
]]></description><pubDate>Sat, 02 Aug 2025 20:08:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44770947</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=44770947</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44770947</guid></item><item><title><![CDATA[New comment by jaharios in "Widespread power outage in Spain and Portugal"]]></title><description><![CDATA[
<p>Until you have to charge your phone.</p>
]]></description><pubDate>Tue, 29 Apr 2025 01:47:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=43827984</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=43827984</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43827984</guid></item><item><title><![CDATA[New comment by jaharios in "They're Close to My Body: A Hagiography of Nine Inch Nails and Robin Finck (2020)"]]></title><description><![CDATA[
<p>It is a Greek word, used for Saints Icons painting, Agio (Saint) + Graphi (Writing down).<p>Painting in Greek is zographia, Zoi ( life/living)  + Graphi. 
The use case in the Article and English is mostly from "intellectuals" who like to use cool words without even knowing their meaning.</p>
]]></description><pubDate>Sun, 16 Mar 2025 02:45:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=43376611</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=43376611</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43376611</guid></item><item><title><![CDATA[New comment by jaharios in "Introducing a terms of use and updated privacy notice for Firefox"]]></title><description><![CDATA[
<p>I think Baker is now gone gone.<p><a href="https://blog.mozilla.org/en/mozilla/mozilla-leadership-growth-planning-updates/" rel="nofollow">https://blog.mozilla.org/en/mozilla/mozilla-leadership-growt...</a></p>
]]></description><pubDate>Sat, 01 Mar 2025 01:05:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=43214312</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=43214312</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43214312</guid></item><item><title><![CDATA[New comment by jaharios in "AI can interpret animal emotions better than humans"]]></title><description><![CDATA[
<p>I agree, I am not saying that it is not nurture, in fact the opposite. Hyper focused on "human way of thinking"  is not something you are born with, you adapt to it. In fact if you don't do it early you will never be able to 100%, in a way we rewire our brain to cope with how we want it to operate to be able fit in.<p>Our language for example, requires to be "forced on us" from early stages or you will never be able to "get it" [1]<p>> Most humans simply ignore animals when they communicate. Both because they're ignorant and because they won't bother to listen. You can't expect an animal to talk with human words, but they talk all the time. Pets actively have conversations with us.<p>With my dog I can understand angry/playful/sad/afraid/(give me food) barking/sounds and especially body language. But hearing "dog words" in random barking? Impossible.<p>[1]<a href="https://en.wikipedia.org/wiki/Language_deprivation_experiments" rel="nofollow">https://en.wikipedia.org/wiki/Language_deprivation_experimen...</a></p>
]]></description><pubDate>Sun, 16 Feb 2025 15:39:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=43068848</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=43068848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43068848</guid></item><item><title><![CDATA[New comment by jaharios in "AI can interpret animal emotions better than humans"]]></title><description><![CDATA[
<p>While Humans can be seen as the most intelligent, we are hyper focused on "human way of thinking" in a way that we lose our "basic" instincts and abilities that other animal have.<p>My dog can understand my voice tone and emotions way better than I can understand hers, also animals can understand the difference sounds we make (words) that affect them, way better than our understanding of animals sounds.<p>Don't get me wrong we can make tools and we can experiment and be able to suppress all other animals. But a solo, "naked" human is like an office worker in world of manual labor.</p>
]]></description><pubDate>Sun, 16 Feb 2025 11:12:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=43067189</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=43067189</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43067189</guid></item><item><title><![CDATA[New comment by jaharios in "A brief history of code signing at Mozilla"]]></title><description><![CDATA[
<p>Actually I had set a policy to block automatic updates. Sometimes they break things, and having a profile backup before updating to roll back in case of breakage is a must. So it is a win win for me.</p>
]]></description><pubDate>Sat, 08 Feb 2025 23:12:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=42987024</link><dc:creator>jaharios</dc:creator><comments>https://news.ycombinator.com/item?id=42987024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42987024</guid></item></channel></rss>