<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: shikck200</title><link>https://news.ycombinator.com/user?id=shikck200</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 05 Jun 2026 02:21:07 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=shikck200" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by shikck200 in "Elixir v1.20: Now a gradually typed language"]]></title><description><![CDATA[
<p>Ocaml is just an ML in the traditional sense. It keep scope without curlies. There is really not much else to it.</p>
]]></description><pubDate>Thu, 04 Jun 2026 19:49:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48403718</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=48403718</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48403718</guid></item><item><title><![CDATA[New comment by shikck200 in "Elixir v1.20: Now a gradually typed language"]]></title><description><![CDATA[
<p>Lisette actually looks really nice! I huge improvement over Go (even i am really fond of the go runtime)</p>
]]></description><pubDate>Thu, 04 Jun 2026 19:46:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48403694</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=48403694</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48403694</guid></item><item><title><![CDATA[New comment by shikck200 in "Does anybody like React?"]]></title><description><![CDATA[
<p>There is many "like react" things out there. I avoid full fledged frameworks like the pest, but something like solid.js is probably the one that matches how i think of webdev.</p>
]]></description><pubDate>Tue, 26 May 2026 06:24:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48275772</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=48275772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48275772</guid></item><item><title><![CDATA[New comment by shikck200 in "Rhombus Language"]]></title><description><![CDATA[
<p>I have aliases for these kinds of general things (in vim) for most languages i use. Eg. if im inside a typescript file i have a mapping produces if ($obj) { $ } and i tab to enter the next "$" to insert the correct things.<p>The same goes fo Go. I have a mapping for if err != nil { ... } and the cursor is places inside the block.<p>I dont understand why people dont use this kind of thing for the most common programming constructs.</p>
]]></description><pubDate>Wed, 19 Mar 2025 11:56:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=43410757</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=43410757</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43410757</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4.4 Released"]]></title><description><![CDATA[
<p>Why is the only PHP defence i hear always the same "use a framework!". I did those for decades, and they always end up sucking. Either you need to hack around them, they have shitty defaults and finally they are abandoned and bitrot without any way of rewriting because of the huge size of the app.<p>How about just write the code, using the stdlib and picking highly focused libraries for things you dont want to write (crypto, drivers etc.) your self.</p>
]]></description><pubDate>Sun, 16 Feb 2025 05:03:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43065496</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=43065496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43065496</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4.4 Released"]]></title><description><![CDATA[
<p>Last time i looked PHP still had no generics, and the "typesystem" is mostly a joke. All the builtin functions still have no namespaces, and no forced types. PHP still coerces strings to ints and vice versa. PHP still has serious bugs with its (only) collection, the frankenstein ARRAY. IIRC doing a array_filter is still broken on PHP8 for key val arrays. PHP still had no unicode in 2023, im not sure how the latest version fixed this or not. IIRC you had to use the weird mb_real functions to get anything closely functional, and it was a mess.</p>
]]></description><pubDate>Sun, 16 Feb 2025 04:58:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=43065466</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=43065466</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43065466</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4.4 Released"]]></title><description><![CDATA[
<p>Real numbers is hard to measure with PHP. This is because of the weird world of CMS systems (like wordpress). From all PHP code out there WordPress is most likely taking 80% of all the online deployments. So is it really PHP anymore? Its just a UI you click, drag and drop and customize. You dont even have to touch any code.<p>IF this is the measure, why not count PHP as C, as its written in C?<p>I stil argue that a single javascript library (jQuery) is MORE popular in 2025 than all PHP installations combined. Take that for scale. Now add all javascript (non compiled) and it trumps PHP by a factor of 100.</p>
]]></description><pubDate>Sun, 16 Feb 2025 04:52:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=43065442</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=43065442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43065442</guid></item><item><title><![CDATA[New comment by shikck200 in "Zig's comptime is bonkers good"]]></title><description><![CDATA[
<p>Indeed. Ocaml is GC'd, and that makes the implementation different. However, the question was about compile times, and i dare to say Ocaml is one if the fastest ones out there, even tho it has an rich and expressive typesystem. The conclusion then needs to be that the type system expressiveness (complexity?) does not alone make for slow compile times.</p>
]]></description><pubDate>Wed, 08 Jan 2025 06:59:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=42631751</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42631751</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42631751</guid></item><item><title><![CDATA[New comment by shikck200 in "Zig's comptime is bonkers good"]]></title><description><![CDATA[
<p>Ocaml</p>
]]></description><pubDate>Tue, 07 Jan 2025 12:35:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42621744</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42621744</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42621744</guid></item><item><title><![CDATA[New comment by shikck200 in "Neuters: Lightweight front end to Reuters News"]]></title><description><![CDATA[
<p>Some issues with pagination. I would recommend a non limit offset combo. Right now i get an error: "You tried to access /world/" when manually change the offset.</p>
]]></description><pubDate>Mon, 30 Dec 2024 08:40:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=42547622</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42547622</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42547622</guid></item><item><title><![CDATA[New comment by shikck200 in "Nyxt: The Hacker's Browser"]]></title><description><![CDATA[
<p>My first impression was the same. Mostly from the screenshots, each one had multiple places with an "emacs" text element. If this is not bound to emacs, what the hell is the emacs thing doing there?</p>
]]></description><pubDate>Sun, 08 Dec 2024 06:51:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=42355449</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42355449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42355449</guid></item><item><title><![CDATA[New comment by shikck200 in "Lies we tell ourselves to keep using Golang (2022)"]]></title><description><![CDATA[
<p>The author clearly does not weigh in on the "whys" some things work in Go like they do.<p>So, adding an extra struct field results in the base value, and by design this <i>should</i> be used as a base default. The go proverb make base values useful goes hand in hand.<p>Obviously functions are not the same. And calling function with the wrong args is a compile time error. There is also CI check that check for this use case.<p>Overall this seems like a comparison to Rust, and its obvious they are not same same. Apples to Oranges.</p>
]]></description><pubDate>Tue, 26 Nov 2024 10:35:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=42244442</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42244442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42244442</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>That was a ballpark estimation, and while pure req/sec is usually irrelevant, it still comes in when the load starts to increase and you need to squeeze every last drop of perf.<p>PHP usually is doing poorly, even with its "cache", and when you realize that PHP devs actually are not PHP devs, but framework (like laravel/symfony) devs you need to account for the overhead of the framework too.<p>But you can have a look at the framework benchmarks game:<p><a href="https://www.techempower.com/benchmarks/#section=data-r21&hw=ph&test=db&l=zijlof-cn3&f=zik0z3-zik073-zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-ziime7-zik0zj-zhxjwf-zik0zj-zik0zj-zik0zj-zik0zj-1ekf&p=0-0-0-e8-13ydj4-0" rel="nofollow">https://www.techempower.com/benchmarks/#section=data-r21&hw=...</a></p>
]]></description><pubDate>Sat, 23 Nov 2024 05:13:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42219315</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42219315</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42219315</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>Its obvious that this has been possible before. It always was bad practice to do so, no matter of the language. I for see people starting returning `$this` and having these really complex chains of getters. Its going to turn into even more spaghetti, because now there is two syntaxes for basically doing the same thing. It seems simplicity is just something everyone wants to abandon.</p>
]]></description><pubDate>Fri, 22 Nov 2024 06:54:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=42211694</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42211694</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211694</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>I really dont want to access a property and have it do any sort of magic behind the scenes. This is just bad. Now a property lookup could do some IO, or even throw an exception. PHP should not aim to please the framework of the month, but it in fact seems like Laravel lobbied this into PHP core.<p>> but you’ll never have to use them<p>But i do. I now cant tell if im accessing a property or a getter. With custom functions (like getFoo()) it was annoying, but still obvious, now its just magic and library authors will 100% start to abuse this feature allover.</p>
]]></description><pubDate>Fri, 22 Nov 2024 05:59:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=42211500</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42211500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211500</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>Seems like that requires some sort of ad-hoc PHP extension. These are not in the standard PHP distribution? I would not want to rely on some random PHP extension that maintained by a single guy for anything production grade. Compare that to something like tensorflow thats backed by a HUGE community of maintainers.</p>
]]></description><pubDate>Fri, 22 Nov 2024 05:52:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=42211482</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42211482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211482</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>Does anyone really FTP files like its 2003? Even in PHP you deploy with some sort of tool, like docker etc. The reload page thing is pretty much solved in all languages with a watcher. entr is a universal one, thats written in C and fast as anything.<p>The thing (most) other languages have is unicode support and concurrency. In PHP there is basically none of these.<p>Fast? You mean fast as in CPU bound tasks? 99.99% of PHP code is slow because of IO, and without any concurrency all the other languages beat PHP easily. If you need CPU bound work, you would not pick PHP (or any other scripting language) anyway.<p>In most benchmarks PHP (with Laravel/Symfony) is barely doing 500req/sec. Compare this to languages in the same space (like nodejs/python) and they run the same program and can serve 10K-30K req/sec.<p>Having said that python (a slow langauge) is still capable of doing heavy CPU bound tasks with libraries like numpy. Im not aware if PHP can install C dependencies with composer, like you can with pip.</p>
]]></description><pubDate>Fri, 22 Nov 2024 04:44:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=42211270</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42211270</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211270</guid></item><item><title><![CDATA[New comment by shikck200 in "PHP 8.4"]]></title><description><![CDATA[
<p>Looks like PHP is going even further towards Java. I really loath getters/setters with passion. I really wish PHP instead focused on getting some sort of concurrency builtin and proper unicode string literals. That should be the main focus, instead of copying various features from Java.</p>
]]></description><pubDate>Fri, 22 Nov 2024 04:34:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=42211230</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42211230</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211230</guid></item><item><title><![CDATA[New comment by shikck200 in "Show HN: Dumbo – Hono inspired framework for PHP"]]></title><description><![CDATA[
<p>See my above comment for a semi detailed version of how we do things.</p>
]]></description><pubDate>Thu, 21 Nov 2024 14:31:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42204635</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42204635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42204635</guid></item><item><title><![CDATA[New comment by shikck200 in "Show HN: Dumbo – Hono inspired framework for PHP"]]></title><description><![CDATA[
<p>We started small. And prototyped with just a single feature.<p>Basically we generate code in our src folder under a reserved namespace, and other PHP code can then use that code with imports.
As we grow, we might want to split this into separate compilation units (we are not there yet, as the Haxe compiler is really fast!)<p>At the moment the generated PHP code is checked in source control, again we might want to have this done in CI, but it works kind of nicely at the moment.<p>The tricky bits are how to "speak" to PHP. Haxe is a really nice functional language (even its syntax is traditionally class based, but you can have module level fields in Haxe since 2020),
so its pretty annoying to handle option types etc from the PHP side. We are still not decided on this part, and many APIs expose duplicate functions for some general task, like foo and foo_exn, and 
the one that ends with _exn throws instead of returning a variant (like option/maybe etc)<p>Also, its tricky to design where data is fetched from. We tend to keep the Haxe code as pure as possible, and only taking input and returning output (not doing any IO). We also write our own
typings for externals, this has actually been really good for us, as we can observe easily what we actually use, and if we can remove some dependency that has some one feature we only use.<p>Overall, im amazed not more PHP devs look into Haxe as its basically a better version of what is TypeScript > JavaScript. Also there is no other compile to PHP language im aware of 
that ha the same robustness and features Haxe has.</p>
]]></description><pubDate>Thu, 21 Nov 2024 14:30:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=42204631</link><dc:creator>shikck200</dc:creator><comments>https://news.ycombinator.com/item?id=42204631</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42204631</guid></item></channel></rss>