Skip to content

Instantly share code, notes, and snippets.

View IahmadDev's full-sized avatar
🎯
Focusing

AHMAD USAMA IahmadDev

🎯
Focusing
View GitHub Profile
@IahmadDev
IahmadDev / P6P.md
Created November 12, 2024 04:48 — forked from emeryao/P6P.md
Pixel 6 Pro

Root with magisk

  1. flash latest factory image
  2. use canary version of magisk to patch boot.img
  3. fastboot flash boot magisk_boot.img

Change Model ID

  1. get devinfo.img
C:\ $ adb shell
raven:/ $ su
@IahmadDev
IahmadDev / full-screen-portfolio-carousel.markdown
Created December 2, 2022 10:50
Full Screen Portfolio Carousel
@IahmadDev
IahmadDev / .gitignore
Created April 22, 2021 08:39 — forked from pingrishabh/.gitignore
Standardised gitignore for your Flutter apps & Dart projects
### Flutter Generated
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
@IahmadDev
IahmadDev / BalancedParentheses.cpp
Created October 12, 2019 07:21 — forked from mycodeschool/BalancedParentheses.cpp
C++ Program to check for balanced parentheses in an expression using stack.
/*
C++ Program to check for balanced parentheses in an expression using stack.
Given an expression as string comprising of opening and closing characters
of parentheses - (), curly braces - {} and square brackets - [], we need to
check whether symbols are balanced or not.
*/
#include<iostream>
#include<stack>
#include<string>
using namespace std;