Skip to content

Instantly share code, notes, and snippets.

View MahadMuhammad's full-sized avatar
🔬
Learning & Experimenting

Muhammad Mahad MahadMuhammad

🔬
Learning & Experimenting
View GitHub Profile
@MahadMuhammad
MahadMuhammad / events_and_collaborators.md
Last active February 17, 2024 11:19
GCE Application

Techonix Collaborators:

Our collaborators are:

  • GDSC FAST, Lahore
  • GDSC COMSATS Sahiwal
  • DevHub Community (https://www.instagram.com/realdevhub/)
  • GDSC COMSATS Lahore
  • GDSC FAST, Peshawar
  • GDSC Riphah University, Islamabad Campus
  • GDSC Mohammad Ali Jinnah University
@MahadMuhammad
MahadMuhammad / gsoc.md
Last active November 12, 2023 10:59
Beginner Guide to GSoC

gsoc image

Early Preperation of Google Summer Of Code (GSoC) 2023 Mentorship Program

Do you have a passion for workiing open-source projects, that powers the whole world and a desire to learn from the technology makes? Do you want work on these amazing projects, while sitting at home and reciveing a stipend from 1500$ - 3000$? If your answer is a resounding “yes,” then Google Summer of Code (GSoC) might just be the perfect journey for you!

Previously, Google Summer Of Code was only for students enrolled in some educational institution. But now, it is available for everyone, who has the passion for understanding how the technolgies that we uses in our daily lifes works.

What is GSoC?

Google Summer of Code (GSoC) is an online program by Google that connects students with open-source organizations. Students can apply to work on a specific project with an organization during their summer break. They receive guidanc

@MahadMuhammad
MahadMuhammad / Output.md
Created July 5, 2023 11:57
Make-Check-rust
		=== rust tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using /home/mahad/Desktop/mahad/gccrs/gcc/testsuite/config/default.exp as tool-and-target-specific interface file.
Running /home/mahad/Desktop/mahad/gccrs/gcc/testsuite/rust/compile/compile.exp ...
@MahadMuhammad
MahadMuhammad / current-error-codes.md
Last active September 17, 2023 12:13
List of Rust Compiler (rustc-1.49.0) Error Codes and their Compatibility with GCC-Rust
@MahadMuhammad
MahadMuhammad / CP_TEMPLATE_CPP.cpp
Last active April 7, 2024 08:12
My vscode competetive programming user snippet
/*
* Author : ${USER}
* Created : ${MONTH_NAME_SHORT}-${DAY}(${DAY_NAME_SHORT})-${YEAR}
* Time : ${HOUR}:${MINUTE}:${SECOND} / ${TIME}
* Location: ${DIR_PATH}/${FILE_NAME}
*/
#[[#include]]#<bits/stdc++.h>
using namespace std;
@MahadMuhammad
MahadMuhammad / Stack-using-array.cpp
Last active October 23, 2022 08:26
Implementation of Stack in C++ by abstract data type using dynamic array in C++ with the help of classes
#include <iostream>
using namespace std;
template<typename T>
class StackByArray
{
private:
int top;
int max_size;
T* array;
@MahadMuhammad
MahadMuhammad / linked_list.cpp
Created September 28, 2022 19:54
C++ Lined List Code
#include <iostream>
using namespace std;
class node
{
int data;
node *next;
friend class linked_list;
};
class linked_list
{