Venn.js is a javascript library for laying out area proportional venn and euler diagrams. This library depends on d3.js to display the venn diagrams. Also we can add some effects such as interaction, tooltip and etc. https://github.com/benfred/venn.js/
Install laravel package from local folder
When we develop laravel packages, they should be uploaded to packagist in order to test it. It’s very annoying to update some small code snippet, upload again and test. In order to prevent this, there is a way to install laravel package from local folder. Add this code snippet to composer.json And run composer install …
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 …
Datatables for React using Material-UI
MUI-Datatables is a data tables component built on Material-UI. It comes with features like filtering, resizable + view/hide columns, search, export to CSV download, printing, selectable rows, expandable rows, pagination, and sorting. On top of the ability to customize styling on most views, there are three responsive modes “stacked”, “scrollMaxHeight”, and “scrollFullHeight” for mobile/tablet devices. https://github.com/gregnb/mui-datatables
Amazon Lex
Amazon Lex is a service for building conversational interfaces into any application using voice and text. Amazon Lex provides the advanced deep learning functionalities of automatic speech recognition (ASR) for converting speech to text, and natural language understanding (NLU) to recognize the intent of the text, to enable you to build applications with highly engaging …
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 …
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/
Dialogflow
Build natural and rich conversational experiences Give users new ways to interact with your product by building engaging voice and text-based conversational interfaces, such as voice apps and chatbots, powered by AI. Connect with users on your website, mobile app, the Google Assistant, Amazon Alexa, Facebook Messenger, and other popular platforms and devices. Powered by …
Laravel divide migrations into separate folders and run at once.
Add following code snippet in boot method of AppServiceProvider After that we can just run `php artisan migrate` and all migrations will be run at once.