HOME Digital/Technology Python JavaScript JavaScript Regular Expression 404 Not Found 403 Forbidden 500 Error Browser Freezing CORS Error exclude_javascript HTTP RegExp Video Buffering URL Blocker

URL BLOCKER.ZIP

Block unwanted URLs for comfortable web browsing with Chrome Addon - URL Blocker

Block unwanted URLs for comfortable web browsing with Chrome Addon - URL Blocker  

created at Nov 01, 2024   6,660  
I was wondering if there is any way to block certain URLs instead of Ad Blockers,and found URL Blocker at Chrome Web Store.With URL Blocker,you can block certain URLs which make your browser freeze.It will be something like moatads.com,airtory.com,rlcdn.co...

The difference between 403 and 404 in HTTP

The difference between 403 and 404 in HTTP  

updated at Sep 25, 2024   6,675  
You may have been embarrassed when you accessed the website and the error page appeared with a number such as 404,502,etc.rather than being connected to the site.The reason for this problem is because of the website error code.It usually happens when a cli...

RegExp example in Python to exclude javascript from HTML code  

created at Mar 22, 2024   6,632  
To exclude JavaScript from HTML code using Python, you can use regular expressions (re module) to remove all tags and their contents. Here's a simple Python function to achieve this:This function exclude_javascript() takes an HTML code string as input and ...

Regular Expressions in JavaScript  

updated at Oct 03, 2024   6,641  
Regular expressions in JavaScript are a powerful tool for working with strings.They allow you to search for patterns within strings and manipulate them as needed.Here's a basic overview:Creating Regular Expressions: You can create a regular expression in J...