Regular Colors
Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
#01 | |
(سوف احذف واتساب فى البداية من فبراير.) | |
لماذا؟ | |
#02 | |
ربما تكون قد رأيت هذه الرسالة في واتساب: | |
[https://imgbox.com/p8vSpBaV OR https://images2.imgbox.com/eb/9b/p8vSpBaV_o.png] |
Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
#debugging shellscripts -x would show the scrips line by line and output followed by | |
#!/bin/bash -x | |
TEST_VAR="test" | |
echo "$TEST_VAR" | |
#custom | |
#set -x / start debugginh | |
#set +x / stop | |
#-ex exit on stop | |
#-v prints shell before substitution are applied | |
#-vx |
#!/bin/bash | |
## Help Message | |
if [ "$1" == "-h" ] || [ "$1" == "--help" ] || [ $# -eq 0 ]; then | |
echo "Usage: `basename $0` password's name/password's ID" | |
echo "EX: `basename $0` github" | |
echo "EX: `basename $0` 33j9p592-3c2u-be6h-nek8-e3y4cpbvf53c" | |
exit 0 | |
fi |
function upvote() { | |
document.querySelectorAll('[data-click-id="upvote"]').forEach((b, i) => { | |
setTimeout(() => { | |
if (b.getAttribute("aria-pressed") == "true") { | |
console.log("already upvoted..."); | |
} else if (b.getAttribute("aria-pressed") == "false") { | |
b.click(); | |
console.log("upvoting..."); | |
} else { | |
console.log("something went wrong..."); |
{ | |
"basics": { | |
"name": "John Doe", | |
"label": "Programmer", | |
"picture": "", | |
"email": "john@gmail.com", | |
"phone": "(912) 555-4321", | |
"website": "http://johndoe.com", |