WordPress asking for FTP credentials on localhost

Unable to Add/Delete plugin in localhost?
After you new and shiny localhost installation you go ahead and start cleaning up. Keeping one fallback theme twenty twenty and deleting others. Then you go ahead and try deleting the Hello Dolly plugin and the Akismat plugin which I believe may not have much usage in localhost and you face this issue of unable to delete or install wordpress plugin without error.

Published
Categorized as Wordpress

Check Out These Cool New Features of Android 10

Recently the newest version of android got released. The availability of android 10 in different devices is very less but I found a workaround to install and test android 10. For a change, dessert names got dropped. Google named this version as Android 10. 5 New Features of Android 10 With this new android os,… Continue reading Check Out These Cool New Features of Android 10

Javascript – The Weird Parts

JavaScript is a powerful and versatile programming language that has been widely adopted by developers around the world. However, as with any programming language, javascript possesses certain quirks and weird parts that can cause confusion and frustration for developers. One such example is the behavior of the built-in JavaScript functions and operators when dealing with… Continue reading Javascript – The Weird Parts

Nodemon not refreshing page automatically

while setting up a MERN app, i was using nodemon to reflect code edits and render the new code in real time. I used npm i -g nodemon which didn’t work.

Published
Categorized as NodeJS

Hello And Welcome

As I am into the process of continuous learning and implementing those on a daily basis, I thought of managing a repository where all my learnings will reside. I ‘ll keep on adding new bits of information which I feel I can use again. Making this public so that if anyone else needs the same… Continue reading Hello And Welcome

Published
Categorized as Random

10 Core Intel Processor – Intel Stepping Up To Counter Ryzen

Intel enjoyed a significant period of time having a monopoly in the desktop processor market. After the failure of Bulldozer and subsequently of Piledriver, Steamroller & Excavator. Intel was enjoying an undisputed position. With Bulldozer, AMD tried to move from a wide, high-IPC, low-clock design to a narrow, low-IPC, high-clock design. To make that work,… Continue reading 10 Core Intel Processor – Intel Stepping Up To Counter Ryzen

How two companies disrupted Indian market

The Indian market has seen significant changes in recent years, with two companies, Reliance JIO and Xiaomi, standing out for their disruption. Both have employed strategies that have altered their respective industries and positively impacted millions of people. Let’s see how two companies disrupted the Indian market. Let’s take a look at their strategies and… Continue reading How two companies disrupted Indian market

Get last element of Array in Javascript

You can always do it in the fastest way. If performance is a deal breaker for you where you are writing code for million concurrent connections then arr.length -1 is your thing. But if you fancy some ES6 like I do, then read on..