Laravel strives to make the entire PHP development experience delightful, including your local development environment. Vagrant provides a simple, elegant way to manage and provision Virtual Machines. Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, a web server, and any other server software on …
Remote Desktop Software, AnyDesk
AnyWhere. AnyTime. AnyDesk Connect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike. https://anydesk.com/en/downloads
jsPDF
jsPDF is a library to generate PDF on client-side JavaScript. Normally we use DomPDF (https://github.com/dompdf/dompdf)to create PDF on PHP based back end frameworks and we can use jsPDF to generate PDF on client side not on server side.https://github.com/MrRio/jsPDF
One last, but most tricky choice when you can not login with google account
https://www.google.com/accounts/IssuedAuthSubTokens The link above will lead you the page where the list of apps which has permission to your google account. Remove the domain which you fail to login. And the try login again. Add clap if this work!
Meazure – PixelStick like on Windows PC
PixelStick is a great tool for designers and developers who is working on macOS. But unfortunately, Plumamazing didn’t released windows version of it. But we have some great alternatives to PixelStick, and one of these are Meazure. It has all functionalities including length, angle view.
Nuxt JS
Nuxt.js is a framework for creating Vue.js applications, you can choose between Universal, Static Generated or Single Page application. Its main scope is UI rendering while abstracting away the client/server distribution. Our goal is to create a framework flexible enough that you can use it as a main project base or in addition to your current project …
Touching Parents Timestamps with “$touches” in Laravel
When you’d need to update updated_at field of parent model, you can just use $touches of Laravel eloquent. Let’s assume, you have Posts and each Post has multiple Comments.Then it’s one to many relationship between Post and Comments.If a user added a comment for the post, we should update updated_at of the post as well.We …
AR comes to Android with the ARCore SDK
Unity and Google have a shared vision of democratizing Virtual and Augmented Reality development. Unity’s XR team has been working hand-in-hand with the Immersive Computing team at Google to overcome some of the most difficult challenges AR development presents. One of the biggest hurdles that developers face is ensuring that their apps and experiences are …
Trade-off running atomic daemons in Node.js
When you develop daemons that runs periodically in Node.js, you’d have some tricky issues.I have used to node-schedule npm package and I had several problems. As it runs by certain time interval, it could overlap each other as well as it will run another process without completing all jobs. For example, you have a daemon …
Difference of External and Public modifier in Solidity
When you write smart contracts in Solidity you will use modifier for each function that indicates accessibility for the functions.