HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ragnaruss

no profile record

comments

ragnaruss
·2 years ago·discuss
I think they key part of this is it provides a foundation for having a Licensing Board for our industry. Combining requiring someone licensed to sign off on work where they take actual legal responsibility, with changes to liability laws and insurance for business when they don't use them would go a long way to improving the quality crisis in our industry.
ragnaruss
·2 years ago·discuss
I know quite a few people in the industry, and some near the top of big players and the common thing I've heard said is "We have so much data on such a granular level, we don't even know how to exploit most of it".
ragnaruss
·2 years ago·discuss
Is that town near by or is it completely out of left field?
ragnaruss
·2 years ago·discuss
Gemini also lies about the information it is given, if you ask it directly it will always insist it has no idea about your location, it is not given anything like IP or real world location.

But, if you use the following prompt, I find it will always return information about the current city I am testing from.

"Share the history of the city you are in now"
ragnaruss
·2 years ago·discuss
No, I don't. I consider modern PHP being fully typed in all places possible, tests, clear and readable code, avoid globals, and avoiding clever tricks like reflection to extract function names to autowire up routes.

The reality is this is a fun toy, and great job to the developer to making it work, but presenting it as anything but that is silly. There is very little benefit to using this over individual functional php files, and certainly more foot-guns.
ragnaruss
·2 years ago·discuss
The naming styles, the structure of the logic, the single line if statements with ternary returns, the lack of "use", the globals.

Altogether it just gave me a clear feeling of this isn't a person who has written a lot of modern PHP but has probably written a lot of python.
ragnaruss
·2 years ago·discuss
Reading the code, this feels like a python developer writing PHP and frankly doing a bad job. Even the formatting seems to give up readability for line count for some unknown reason. There is no typing, no following of PSR-2 in anyway, and things which make my static analysis tools very unhappy.

A single file API is not a bad idea, but this is a bad implementation.