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
<!-- Psudeo Code: | |
1. Media content class with properties title, release date and a method | |
to display info about the title and release date | |
2. Movies should contain genre and display additionally | |
3. Tv shows should contain num of seasons and display additionally | |
--> | |
<?php | |
class Media_Content { |
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
<?php | |
class Password_Manager { | |
private $length; | |
private $useUppercase; | |
private $useLowercase; | |
private $useDigits; | |
private $useSpecialChars; | |
private $password; | |
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
<?php | |
$contact_info = array( | |
'Zeeshan ' => ' 03332490820', | |
'Bilal ' => ' 03332490895', | |
' Danish ' => ' 03332490673', | |
'Sami' => ' 03332490165', | |
'Ahmed' => ' 03332490090', | |
' Batool ' => ' 03332490554', | |
'Owais ' => ' 03332490967', | |
'Ahsan ' => ' 03332490534', |
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
<?php | |
session_start(); | |
// Check if the target number and attempts are set in the session | |
if (!isset($_SESSION['target_number'])) { | |
// Generate a random number between 1 and 10 if it's not set | |
$_SESSION['target_number'] = rand(1, 10); | |
$_SESSION['attempts'] = 0; | |
$_SESSION['previous_attempts'] = array(); | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Minesweeper Game</title> | |
<style> | |
body { | |
text-align: center; | |
} | |
.cell { | |
width: 30px; |
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
<?php | |
function get_random_quotes() { | |
$api_url = 'https://api.quotable.io/random'; | |
$response = @file_get_contents( $api_url ); | |
$error = error_get_last(); | |
if ( $error ) { | |
echo 'no quotes available at the moment'; | |
} else { | |
$quotes_output = json_decode( $response, true ); |
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
<?php | |
function generatePassword( | |
$length, | |
$useUppercase, | |
$useLowercase, | |
$useDigits, | |
$useSpecialChars | |
) { | |
$formats = [ | |
"uppercase" => "ABCDEFGHIJKLMNOPQRSTUVWXYZ", |
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
Canvas is a powerful open-source LMS that can be self-hosted on your own server. This is a detailed guide to help you Install Canvas LMS on Ubuntu using the Apache web server and enabling SSL for secure communication. Let's get started! | |
Caution: Before proceeding, make sure you have administrative access to your Ubuntu server by running "sudo su" and have basic knowledge of command-line operations. Canvas requires Ubuntu 20.04 LTS and a server with at least 8GB RAM. The steps below are quite technical and require a server administrator. | |
If it's technically challenging for you, allow us to help you set up with our Canvas Installation Service. | |
Step 1: Create a PostgreSQL user and databases for Canvas | |
Once you execute this command, it will ask for your server password and then, your canvas PostgreSQL password. Please note the later one as it will be used when we will edit the canvas database config file. | |
sudo apt-get install postgresql-12; sudo -u postgres createuser canvas --no-createdb --no-superuser --no- |
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
<!-- Add this HTML markup on your footer section --> | |
<a href="https://api.whatsapp.com/send?phone={ENTER YOUR PHONE NO HERE}&text=Hi%20There" class="whatsapp_float" target="_blank" rel="noopener noreferrer"> | |
<span class="home-whatsapp-icon"><svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="80" height="80" viewBox="0 0 80 80"> | |
<path fill="#f2faff" d="M7.904,58.665L7.8,58.484c-3.263-5.649-4.986-12.102-4.983-18.66 C2.826,19.244,19.577,2.5,40.157,2.5C50.14,2.503,59.521,6.391,66.57,13.446C73.618,20.5,77.5,29.879,77.5,39.855 c-0.01,20.583-16.76,37.328-37.34,37.328c-6.247-0.003-12.418-1.574-17.861-4.543l-0.174-0.096L2.711,77.636L7.904,58.665z"></path><path fill="#788b9c" d="M40.157,3L40.157,3c9.85,0.003,19.105,3.838,26.059,10.799C73.17,20.76,77,30.013,77,39.855 c-0.009,20.307-16.536,36.828-36.855,36.828c-6.149-0.003-12.237-1.553-17.606-4.482l-0.349-0.19l-0.384,0.101l-18.384,4.82 l4.91-17.933l0.11-0.403l-0.209-0.362c-3.22-5.574-4.92-11.94-4.917-18.41C3.326,19.52,19.852,3,40.157,3 M40.157,2 C19.302, |
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
/* Add the below code snippet to your child theme's functions.php file */ | |
/* Disable Video and Audio sharing for participants in a BBB Room */ | |
add_filter( 'virtual_classroom_pro_join_params', 'virtual_classroom_pro_custom_join_params' ); | |
function virtual_classroom_pro_custom_join_params( $params ) { | |
$params['userdata-bbb_force_listen_only'] = true; | |
if ( ! $params['isMod'] ) { |