Skip to content

Instantly share code, notes, and snippets.

View adeel-raza's full-sized avatar

Adeel adeel-raza

View GitHub Profile
@adeel-raza
adeel-raza / OOP_movies_inherit_practice.php
Created December 10, 2023 19:47
OOP PHP example to practice inheritence, constructors
<!-- 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 {
@adeel-raza
adeel-raza / oop_password_generator.php
Created December 10, 2023 18:18
OOP based password generator in PHP
<?php
class Password_Manager {
private $length;
private $useUppercase;
private $useLowercase;
private $useDigits;
private $useSpecialChars;
private $password;
@adeel-raza
adeel-raza / bubble_sort.php
Created November 29, 2023 14:51
program to sort a list of contacts with Bubble sort
<?php
$contact_info = array(
'Zeeshan ' => ' 03332490820',
'Bilal ' => ' 03332490895',
' Danish ' => ' 03332490673',
'Sami' => ' 03332490165',
'Ahmed' => ' 03332490090',
' Batool ' => ' 03332490554',
'Owais ' => ' 03332490967',
'Ahsan ' => ' 03332490534',
@adeel-raza
adeel-raza / number_guess.php
Last active November 3, 2023 16:30
PHP based number guessing game
<?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();
}
@adeel-raza
adeel-raza / minesweeper.html
Created November 3, 2023 16:21
Minesweeper game using Javascript
<!DOCTYPE html>
<html>
<head>
<title>Minesweeper Game</title>
<style>
body {
text-align: center;
}
.cell {
width: 30px;
@adeel-raza
adeel-raza / quote.php
Last active November 29, 2023 14:39
Random Quote generator using api.quotable.io in PHP
<?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 );
@adeel-raza
adeel-raza / password_generator.php
Created November 3, 2023 16:09
PHP based password generator program
<?php
function generatePassword(
$length,
$useUppercase,
$useLowercase,
$useDigits,
$useSpecialChars
) {
$formats = [
"uppercase" => "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
@adeel-raza
adeel-raza / Install.html
Last active August 8, 2023 17:40
Self Host and Install Canvas LMS on Ubuntu Server in 2023
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-
@adeel-raza
adeel-raza / whatsapp-icon.html
Created June 14, 2023 16:33
Add a Contact Us WhatsApp icon on your website with a simple HTML CSS snippet
<!-- Add this HTML markup on your footer section -->
<a href="https://api.whatsapp.com/send?phone={ENTER YOUR PHONE NO HERE}&amp;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,
@adeel-raza
adeel-raza / functions.php
Created June 9, 2023 14:20
Disable Video and Audio sharing for participants in a BigBlueButton Room in Virtual Classroom with WordPress plugin
/* 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'] ) {