Sergii Shymko (@sergiishymko) 's Twitter Profile
Sergii Shymko

@sergiishymko

Software architect and engineer by heart | ex-@magento, co-founder #magento2

ID: 3076267558

linkhttps://www.linkedin.com/in/sshymko/ calendar_today07-03-2015 00:59:19

11,11K Tweet

1,1K Takipçi

838 Takip Edilen

Greg Korba 🛠️🛹 Codito (@_codito_) 's Twitter Profile Photo

I wrote a simple article about #Pie (new extensions installer) for #PHP, which shows installation and usage in #Docker builds (both Debian and Alpine). Looking forward for the tool's further development 🤞😊. blog.codito.dev/2024/11/pie-ne…

Sergii Shymko (@sergiishymko) 's Twitter Profile Photo

Modern browsers can send an HTTP request using an alternative mechanism to fetch(). Use navigator.sendBeacon() to fire off a POST request and let the browser guarantee its completion even when page is closed. navigator.sendBeacon("/log", analyticsData); developer.mozilla.org/en-US/docs/Web…

Thomas Dohmke (@ashtom) 's Twitter Profile Photo

At Ignite, Satya Nadella just unveiled our sweeping new agentic future for Copilot Workspace. Workspace is the most advanced – and the first – agentic IDE. Built right in the GitHub Issue, Workspace deploys five agents to get you all the way to the pull request: Brainstorm. Spec.

At Ignite, <a href="/satyanadella/">Satya Nadella</a> just unveiled our sweeping new agentic future for Copilot Workspace. Workspace is the most advanced – and the first – agentic IDE. Built right in the GitHub Issue, Workspace deploys five agents to get you all the way to the pull request: Brainstorm. Spec.
Tobias_Petry.sql (@tobias_petry) 's Twitter Profile Photo

SQLite has the awesome functionality to add functions written in PHP. And PDO which Laravel uses, supports this! Has anyone experimented with adding support like this to Laravel? It would be super helpful if packages could add functions to use 🔥

SQLite has the awesome  functionality to add functions written in PHP.

And PDO which Laravel uses, supports this!

Has anyone experimented with adding support like this to Laravel? It would be super helpful if packages could add functions to use 🔥
Danny Moerkerke (@dannymoerkerke) 's Twitter Profile Photo

The Element Capture API is now in Chrome 132 beta. This API enables web apps to restrict screen capturing to a single DOM element. Demo link: 👇

MHD (@mhdcode) 's Twitter Profile Photo

I couldn’t stop thinking about this react escape hatch, this pattern is so simple yet incredibly effective in real-world react applications. so, i decided to create a few examples of how this pattern could be used.

I couldn’t stop thinking about this react escape hatch, this pattern is so simple yet incredibly effective in real-world react applications. so, i decided to create a few examples of how this pattern could be used.
Sergii Shymko (@sergiishymko) 's Twitter Profile Photo

Always thought that my “superpower” as a software engineer was attention to detail. But it’s even more so that I care. Only a person who genuinely cares about what they do can take initiative and go the extra mile. That makes all the difference!

matt palmer (@mattppal) 's Twitter Profile Photo

NEW: Microsoft just dropped a library for converting Office files to markdown. It's super fast and easy to use. I built an app for you to try it out. Here it is converting a boilerplate pptx.

Peter Kraft (@petereliaskraft) 's Twitter Profile Photo

Every day on YouTube, people upload 4 million videos and watch 5 billion videos. Handling this staggering traffic requires a vast fleet of servers. So when a new request comes in, where does it go? How do you balance load across so many servers for so many jobs? I love this

Every day on YouTube, people upload 4 million videos and watch 5 billion videos. Handling this staggering traffic requires a vast fleet of servers. So when a new request comes in, where does it go? How do you balance load across so many servers for so many jobs?

I love this
Guillermo Rauch (@rauchg) 's Twitter Profile Photo

There’s a series of tasks where the “delegation overhead” to another person is greater than the time & energy spent in doing it yourself. There’s serialization overhead (writing down the spec of inputs and outputs), verification overhead, context-switching / async overhead. I

Sergii Shymko (@sergiishymko) 's Twitter Profile Photo

IMO, the biggest issue here isn’t a forgotten return, but bloating code with a boilerplate added to almost every line effectively making success scenarios incomprehensible. Exceptions is the way to emphasize a happy path without compromising error handling! #programming

Greg Korba 🛠️🛹 Codito (@_codito_) 's Twitter Profile Photo

Interesting #PHP RFC: data classes 🤔. With `data` modifier, such classes would have been compared by values they carry, rather than memory allocation (object ID). No more big conditions with multiple expressions, single === would be enough! wiki.php.net/rfc/dataclass

Interesting #PHP RFC: data classes 🤔. With `data` modifier, such classes would have been compared by values they carry, rather than memory allocation (object ID). No more big conditions with multiple expressions, single === would be enough!

wiki.php.net/rfc/dataclass
Sergii Shymko (@sergiishymko) 's Twitter Profile Photo

The biggest error handling misconception is that every call that can fail must be wrapped in try..catch. This is completely counterproductive. Instead, most errors should propagate and be handled uniformly at well-defined higher level(s). #programming