Puma-dev is the emotional successor to pow. It provides a quick and easy way to manage apps in development on macOS and Linux. Normally we use vhost on local development. But it is difficult to point to port as well. For ex: By vhost: http://development.test -> localhost:80 ( yes ) https://development.test -> localhost:3000 ( no …
C library for Bezier curve
This is github link for the library https://github.com/oysteinmyrmo/bezier This is online demo url https://www.desmos.com/calculator/fivneeogmh Please check the demo. You can get some parameters which you want for bezier curve. and apply it to library. The usage is very simple. So, we can customize ease functions by the library on c++.
Laradock and Xdebug
Mostly we use laradock or homested for laravel projects. But it has some problem for implementation of xdebug. xdebug is powerful tool to speed up development. So, most developers want to enable xdebug on laradock. Actually laradock provides xdebug option. but it is disable by default. We can just enable the option. WORKSPACE_INSTAL_WORKSPACE_SSH=true WORKSPACE_INSTALL_XDEBUG=TRUE PHP_FPM_INSTALL_XDEBUG=TRUE …
libcurl and firewall
Normally cpp application is using libcurl library for http request. But we can meet firewall to prevent the request. it is tricky how to solve the problem. you can find a solution If you have some knowledge with firewall. I am going to tell that you should not release the product if you didn’t consider …
Anti Flicker on Google Optimize
we normally use Google Optimize for A/B testing. A/B testing is redirecting pages with loading. But it is redirected to next page after original page is loaded. Users will feel flicker with first loading. So, we need to prevent the flicker. So, Google provides Anti Flicker Code for Google Optimize. https://support.google.com/optimize/answer/7100284?hl=en Please check the detail.
IDM (internet Download Manager)
Internet Download Manager increases download speed with built-in download logic accelerator, resume and schedule downloads. It is very useful to download multi files. It is providing for Win, Mac, Linux.
Gate class on laravel 6.0
Laravel 6.0 introduces a new method Gate::inspect. This makes it easier to provide custom messages to users during authorization requests, such as a specific error message if their request was denied. We can use it for policy.