sudo apt-get update && sudo apt-get upgrade
sudo apt-get install -y apache2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################# | |
# Name: Bhavik Bhagat # | |
# Email: [email protected] # | |
# Student ID: 202002911 # | |
# Assignment2: crosscheck 2.16.4 # | |
################################################# | |
.data | |
endl: .asciiz "\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If your time does not permit the close supervision of your project then i am here for your help related with LAMP or LEMP Stack and others. | |
Contact Me For Engaged Your Works: | |
Telegram: https://t.me/LinuxGun | |
WhatsApp: https://wa.link/5ow7oz | |
#!/bin/bash | |
# This will remove Apache | |
sudo service apache2 stop | |
sudo apt-get purge apache2 apache2-utils apache2.2-bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
text = "hey Google, this is from Harsh's tutorial https://www.louvre.fr/en/ check http://35.182.245.62/index.php?# 😉 or https://facebook.com 😀 " | |
text_using_harsh_reference = re.sub("https?:\/\/[a-z0-9-]+(?:\.[a-z0-9-]+)+[/?#]\S*", "", text) | |
print(text_using_harsh_reference) | |
text_fixed = text = re.sub("https?:\/\/[a-z0-9-]+(?:\.[a-z0-9-]+)+[/?\S?#]*", "", text) | |
print(text_fixed) |