Svelte is a next generation way of building user interfaces. While frameworks like React, Vue and Angular do the bulk of their work in the browser, Svelte takes it to the next level. It does its work when you build the app and it compiles your Svelte app to efficient […]
Daily Archives: October 25, 2019
REST is the most widespread and effective standard to develop APIs for internet services. When building RESTful services, it is really important to choose the right framework. If you are a PHP developer and performance is critical for you, ReactPHP with its asynchronous, event-driven architecture, is exactly the right choice […]
I’m have a intermediate knowledge of PHP. I feel like in the past 2 years I haven’t made any progress in my knowledge. I really want to progress, but it seems I always hit the same wall. Whenever I want to learn something new I either hit a brick wall […]
Hi. I have been toying around with the idea of making more software faster and better for a while now and I came up with a concept similar to doctrine entities but for implementations. The main idea is that you can represent natural language descriptions with code which you can […]
I’m new to unit testing. I’m making a mysqli wrapper and I want to write a unit test for connecting to a database. Here’s what I came up with: < ?php use PHPUnitFrameworkTestCase; class MyClassTest extends TestCase { protected static $host = 'host'; protected static $username = 'username'; protected static […]
The new version of Gson (v0.7.0) has been released and is now over 50% faster than it was before. Blackfire Benchmark Using this benchmarking library yields some impressive results: Serialization Deserialization The methods that beat it are skipping programmatically determining the steps for serialization. the tsantos benchmark […]
I checked cookies and sessions all things look fine but can’t log not getting any error showing while putting all the information perfect.
I made a module using dynamic rows component with imageUploader field inside. I was able to upload my image on the Magento 2.3.2, but since the new release (2.3.3), I can’t pass the valideFileId() method in the class MagentoFrameworkFileUploader. If I take a look at the valideFileId() method, here is […]
I am trying to place the cart summary to the static page with products. I wanna locate it to the right from the grid of products (listed using Catalog Products widget). Anybody knows how to do this? Will appreciate if anybody can help.