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 …
Ubuntu RAM compression
Current Debian distributions does not have memory compression settings enabled by default. This causes a lot of RAM usage and makes difficult to run many apps for web development. A successor to compcache is zram which is fully integrated in the Linux kernel since 2.6.37.1 and uses lzo compression. The idea behind it is to create swap …
Consistent, reliable exchange rate data and currency conversion for your business
Open Exchange Rates data API powers the Internet’s most dynamic startups, brands and organisations.It provides consistent, reliable exchange rate data and currency conversion for your business. It is also flexible, fast and affordable. Simple to use Scalable Open source integrations Fully-featured https://openexchangerates.org/
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.
Klaviyo is the Mailchimp alternative designed to help you grow.
Join the 6,000 other former Mailchimp customers that came over to Klaviyo in the past two years and saw an average increase of 46% in total store revenue. Mailchimp is for sending email.Klaviyo makes you money. Klaviyo is built from the ground up for ecommerce stores. Our integrations pull in more data. Our email automations …
Extract Version from file name.
We need to get version number from file name some time. We can use Regular Expression for that. $reg = ‘/^[\w-]+.(\d+.\d+.\d+).zip/’; $filename = “myapp.1.12.2”; preg_match_all($reg, $filename, $matches, PREG_SET_ORDER, 0); echo $matches[0][1]; result: 1.12.2
OpenGL Shading Language (GLSL)
OpenGL Shading Language (GLSL), is a high-levelshading language with a syntax based on the C programming language. It was created by the OpenGL ARB (OpenGL Architecture Review Board) to give developers more direct control of the graphics pipeline without having to use ARB assembly language or hardware-specific languages. We can create awesome 3D effects by this language. If you work on After Effects or Premiere …