Blog

Insights, tutorials, and thoughts on web development and technology.

How to Install PHP v 7.3 on Ubuntu 20.04

How to Install PHP v 7.3 on Ubuntu 20.04

# TL;DR version Here is the short version of setting up PHP version 7.3 on your Ubuntu Machine (I am currently on v 20.04) sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get i...

Aug 10, 2020 · Tushar
How to take screenshot of selected Area in Ubuntu v 20.04

How to take screenshot of selected Area in Ubuntu v 20.04

# TL;DR version Press Shift + PrtSc button together, It will change your cursor to a + symbol, click and drag the mouse / track-pad over the desired region of screenshot and release. The screensho...

Aug 09, 2020 · Tushar
How to grab Query String and Send it to Ajax in jQuery

How to grab Query String and Send it to Ajax in jQuery

I had a peculiar requirement where I had to grab the entire query string (GET parameters) from the current page and send it to the ajax call happening on the same page. Here is how I did that $...

Aug 07, 2020 · Tushar
Add Parameters to Laravel Request Object

Add Parameters to Laravel Request Object

I encountered an instance where I was looking to add parameters in the Laravel's Request Object. You might encounter this when you want to add an additional value to the object before calling the stor...

Aug 06, 2020 · Tushar
Installing NodeJS , NPM on Respbian

Installing NodeJS , NPM on Respbian

Quick and Easy guide on How to Install NodeJS and NPM (Node Package Manager) on Respberry Pi (Respbian OS) Run the following command to get the specified version of Node installer. Here I am downlo...

Jul 15, 2020 · Tushar
Single Image Upload Example using VueJS & Laravel

Single Image Upload Example using VueJS & Laravel

In this blog post let's go through the steps involved in building a form in Laravel using VueJS that also has a file input field wherein user can attach an image. This post assumes that you already...

Jun 29, 2020 · Tushar
How to change Vue CLI default port number

How to change Vue CLI default port number

This is a quick post on how you can change the default port i.e. 8080 while running a Vue app via npm. When you run npm run serve on your vue-cli project it runs on port 8080, if that port is busy...

Jun 18, 2020 · Tushar