Author: Aniruddha Chaudhari

WordPress

How to Update WordPress Plugin with zip file Manually?

[Simple steps] How to update WordPress plugin with zip file manually? Download and upgrade plugin manually.

git

How to Merge Local Branch with Master without Missing Your Changes?

How to merge local branch with master without missing changes? Update master branch and push working branch.

bit manipulation

6 Bitwise Operators in Python | Coding Example

What are the Bitwise operators in Python – AND, OR, NOT, XOR, Right Shift and Left Shift? Performing bitwise operations explained with example and code.

php

How to Nofollow and Open Author Bio Links in New Tab [WordPress]

How to set nofollow link in author bio and open it in new tab? PHP code for WordPress theme- (rel=”nofollow”) and (target=”_blank”)…

php

Overwrite WordPress PHP file in Child Theme SubFolder

How to Overwrite WordPress PHP file in Child Theme SubFolder/Sub-directory? Using get_stylesheet_directory and get_template_directory.

Python

Python Tricky Interview Questions and Answers

What are some Python tricky interview questions asked in coding round? Answer explained with code and examples.

git

Top 10 GIT Interview Questions and Answers for Experienced | FAQ

What are the GIT interview questions answers for experienced? Frequently asked basic questions (FAQ) on Github for devops engineer.

git

9 Basic GIT Commands Tutorial for Beginners | Learn to Master

How to learn git commands? Complete tutorial for beginners with all Essential git commands.

Code

Program to Remove All Duplicates Chars from a given String in Python

[Coding Problem solved] How to remove all duplicates from a given string in Python? 1. Without changing the order of characters 2. By traversing the string only once…