-
⏱️ AI drastically reduced CVE to exploit time
It is already about a week and projected timing is 1 hours this year. Cost for creating an exploit is about $4. Patching time for reported vulnerabilities is still about 20 days. https://zerodayclock.com/ proposes the following to address it: Vendor liability — make insecurity expensive for the…
-
🐘 PostgreSQL collations
In PostgreSQL collation determines how strings are sorted and compared. Nowadays projects operate all over the world so we need good support for UTF-8 with natural language sorting which works for any language. There three sources of collation/locale available in PostgreSQL: builtin — only…
-
Прошло ровно полгода с Пых.конф’25 — что это значит?
Это значит, что записи докладов теперь доступны каждому! Смотреть 28 крутых докладов на 📹 YouTube, 📹 VK Видео. #video #php
-
🤔 AI Exposure of the US / RU Job Markets
Andrej Karpathy made a good visualization about job security considering raise of LLMs. US market, data from BLS: https://joshkale.github.io/jobs/ And here's the visualization for Russia market, Rosstat data: https://ai.apigpt.ru/jobs/ Overall: It is huge market change.
-
🤔Humans are bottleneck now
Code could be shipped very fast using LLMs. It is now of a questionable quality sometimes but that would certainly improve. For Yii we use GitHub copilot for reviews along with human review already and that helps to catch more issues and speed things up because review is provided earlier.
-
🤔 LLMs amplify everything including bad practices
LLMs amplify good parts of a human engineer — they help shipping more, they free us from many routine tasks. They can even help with less trivial things like code review and even some architectural decisions and that's great. At the same time, they amplify bad parts many times more: Unmanaged tech…
-
🤔 LLMs and unknown domains
LLMs won't help you much if you have no idea what you need and try to vibe-code solution anyway. If you know what you're doing, even if there are unknowns, LLMs are a big help but if you have no idea, LLMs are the opposite. During the classic coding session you were getting deep into context bit by…
-
🎁 YiiPress
I always wanted to build a really fast static website generator engine with PHP. There were multiple reasons to do it: To exercise. For my own needs. I want to combine all posts I've ever made in a single indexable place. To battle-test Yii3 one more time with a non-standard case.
-
🎁 Radix router for Yii3
About half a year ago wilaak implemented radix router. The router is base on radix tree and is faster than regex-based FastRoute which is default "driver" for Yii3 router. Last month sirix777 implemented a "driver" for Yii3 router that uses radix router and did some benchmarks that prove that it's…
-
🚀FrankenPHP got faster
FrankenPHP got v1.11.2 release which resulted in significantly better performance by switching to Go 1.26 which improved garbage collection and CGO (which is the way Caddy extension communicates with PHP in FrankenPHP). #frankenphp #php