Author: Aniruddha Chaudhari

hacking

How to Recover Website from Japanese Keyword Hack in Google Search?

Step-by-step procedure to recover website from Japanese keyword hack in Google Search? How to prevent Chinese keyword attack.

Django

How to Add Model to Django Admin Site [Step-by-step]

How to add model to django admin site? Step-by-step procedure to create custom form model and add it in admin.py.

Django

[Step-by-Step] Create a Django SignUp Registration Form with Database

How to create Django SignUp Registration Form with database? Add extended fields to Django model, form and view. Example explained.

deadlock

Difference between Deadlock Prevention and Deadlock Avoidance | OS

What is deadlock prevention and deadlock avoidance in operating system? What is the difference between deadlock prevention and deadlock avoidance?

Jobs

[Plan of Action] Basic Skills Required to get a Job in Python

What are the basic skills required to get a job in Python? Complete action plan. How to find the matching job requirement?

Python

[Solved] C408 Unnecessary (dict/list/tuple) call – rewrite as a literal

C408 Unnecessary (dict/list/tuple) call – rewrite as a literal. How to solve flake8 Python dictionary literal issue. Rewrite “dict([])” as “{}”.

coding challenge

[Solved] Sort the Circular Rotated Array in O(n) Time| Algorithm | Code

Write a program to sort the circular rotated array. Algorithm explained with Python, C/C++ and Java coding. Find element in circular rotated array.

coding challenge

Regular Expression to Validate PAN Card Number in Python

[Coding Challenge asked in BrightMoney] Write a regular expression to validate PAN card number in Python. PAN card validation in Python.

coding challenge

Validate IP Address using RegEx in Python

How to validate IP address using regex in Python? Regular expression explain with the coding example and program.