remove.bg is a 3rd party service which provides background removal functionality.Using this service, we can remove any kind of background from face photos and get only the face of the person.Tested with a lot of Toptal profile images, and succeeded to remove the background image and get the face of Toptal developers.
React TextFit
react-textfit is a npm package which fits text content to any element.Imaging that a div tag is 100px and the text content has 1000 letters. react-textfit makes the font size very small (even 1px) in order to fit the text content into the div width.https://www.npmjs.com/package/react-textfit
Input number validation
These 2 articles explain input tag number validation methods.Previous number validation methods had some limitations and were not fit in 100% case but these methods were 100% satisfied with the requirement.https://stackoverflow.com/questions/469357/html-text-input-allows-only-numeric-inputhttps://stackoverflow.com/questions/995183/how-to-allow-only-numeric-0-9-in-html-inputbox-using-jquery/995193#995193
Speakeasy
Speakeasy is a one-time passcode generator, ideal for use in two-factor authentication, that supports Google Authenticator and other two-factor devices.https://www.npmjs.com/package/speakeasy
Integrate migration and seeder in Laravel
When we develop Laravel projects, we typically separate migration files and seed files. But in production environment it’s convenient to integrate migration and seeder in 1 file. We normally need to update migration and seeders while developing projects but this causes a lot of problems especially because of foreign key constraint. We can avoid many …
Apache Netty
Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server. ‘Quick and easy’ doesn’t mean that a resulting application will suffer from a maintainability or a performance issue. Netty …
Flutter
Flutter allows you to build beautiful native apps on iOS and Android from a single codebase. Fast Development Paint your app to life in milliseconds with stateful Hot Reload. Use a rich set of fully-customizable widgets to build native interfaces in minutes. Expressive and Flexible UI Quickly ship features with a focus on native end-user …
How to use Laravel Task Scheduler on Windows 10
Creating and running Laravel’s scheduled tasks is pretty straightforward on Linux. All you have to do is to create a cronjob which looks something like * * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1 and it will call your Laravel command scheduler every minute to execute due tasks. However, Windows doesn’t have cron jobs. The closest equivalent to cron on Windows platform is Windows task …
Quill is a modern WYSIWYG editor built for compatibility and extensibility
Quickstart in jQuery The best way to get started is try a simple example. Quill is initialized with a DOM element to contain the editor. The contents of that element will become the initial contents of Quill. And that’s all there is to it! Next Steps The real magic of Quill comes in its flexibility …