iFrameResizer is a simple library which provides functionality to resize the height of iframe based on it’s content. It’s very useful when we adjust the size of iframe so that we prevent scrolling inside the iframe. Here are reference links. http://davidjbradshaw.github.io/iframe-resizer/ https://github.com/davidjbradshaw/iframe-resizer
PHP8, XDebug 3 released
New version of XDebug released, which supports PHP8. Main concern for us is XDebug settings are changed.Old XDebug2 settings in php.ini can not be used for XDebug 3 and XDebug will not work. Please check in more details about the changed parameters here. https://xdebug.org/docs/upgrade_guide
Adding Swagger To Existing Node.js Project
Today, almost every application has to be connected and to share data with other applications. The best way to do that is throughAPIs. For a long time there hasn’t been any industry standard for designing and documenting APIs. And API without a good documentation on how to use it, is useless. Because of that, developers have …
Laravel Impersonate
Sometimes we face situations when all the tests are passing, we find no bugs, but still, on our users’ part, something broke. By impersonating our users, we can see what they see and track the bugs down easily. We can use laravel-impersonate package for this use case. https://github.com/404labfr/laravel-impersonate The installation and configuration is described in …