As an internet user you need to download and upload data in form of files everyday. Also, as an mobile and/or web app developer you must have used FTP (File Transfer Protocol) to transfer data from one machine to another…
Category: Miscelleneous
How to build a basic Frontend Application using Laravel and Livewire
Laravel framework is primarily used to create backends and APIs. Traditionally, it can leverage PHP to build frontends using blade template system. However, in order to build more interactive web pages developer may prefer to use Javascript frameworks such as…
How to Check Laravel Version using CLI and File System
Laravel is one of the most popular and used frameworks written in PHP programming language. As a Laravel developer you sometimes need to check Laravel version. Especially, if you start working on an existing project coded in Laravel Framework. So…
Steps to Set up PasswordLess SSH Login on Ubuntu with Key Pair
In this tutorial I will explain how to set up passwordless SSH login on an Ubuntu server. There are basically two ways of authenticating user login with OpenSSH server: password authentication and public key authentication. The latter is also known as passwordless SSH…
Laravel Carbon Get Yesterday Date Example
In this post I will show you an example of laravel carbon get yesterday date. With help of Carbon library in Laravel we can get yesterday date in desired format. With the help of this example one can easily get…
How to Change Default iOS Simulator Device to run a React Native app
When testing a react native mobile application one would want to view and debug application in different screen sizes and devices. It is essential to test your application for rendering, look and feel, performance and responsiveness. For this developers use…
How to Remove .DS_Store files from a Git repository?
DS_Store files are automatically created by Mac OS X Finder in browsed directories. These files contain information about system configuration. If you upload them along with other files, the files can be misused to obtain information about your computer. For…
How to change search highlight or selection colour in Sublime Text 3
Sublime Text 3 is very popular and widely used code editor. I have been using it for a while now and am quite enjoying it. The good thing is this that it is free to use, except, having a buy…
Transfer files via ssh from your server to Dropbox
Server to Dropbox – Sometime it is tedious to download files from your server and then uploading to your dropbox via sync since it takes long time. In this post I will show you how you can quickly transfer files to…
Making new object property reactive in Vue.js
The link given below shows us the example of using mutations and actions and Vuex store https://www.telerik.com/blogs/so-what-actually-is-vue-set for simpler examples if you are not sure what they are. Problem: We have a “databases” array which is updated via mutation and…