- flash latest factory image
- use canary version of magisk to patch
boot.img
fastboot flash boot magisk_boot.img
- get
devinfo.img
C:\ $ adb shell
raven:/ $ su
boot.img
fastboot flash boot magisk_boot.img
devinfo.img
C:\ $ adb shell
raven:/ $ su
This is a recreation of the amazing portfolio page found here: https://www.dylanbrouwer.design/work.
A Pen by MUHAMMAD AHMAD USAMA on CodePen.
### Flutter Generated | |
# Miscellaneous | |
*.class | |
*.lock | |
*.log | |
*.pyc | |
*.swp | |
.DS_Store | |
.atom/ |
/* | |
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; |