This file contains hidden or 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
/** | |
* Long Function | |
* It will take 2 seconds to resolve | |
*/ | |
const longFunc = async () => { | |
const second = 2; | |
return new Promise((solve) => { | |
setTimeout(() => { | |
console.log('Hello World'); | |
solve(true); |
This file contains hidden or 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
#!/bin/bash | |
# :: Commands :: | :: Descriptions :: | |
# : | |
# update : Update & Upgrade All | |
# clean : Clean & Empty & Remove Apps, Packages, Trash, Temp, Old Kernel | |
# both : Update & Clean | |
# fix : Fixing Installed Apps & Configuration | |
# all : Run All (Update, Clean & Fix) | |
# superclean : Remove Root / System Cache, Unnecessary Files + 'Clean' |