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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Interactive Tree with Sub-leaves</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; | |
margin: 0; |
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
[ | |
{ | |
"name": "Afghanistan", | |
"code": "AF", | |
"capital": "Kabul", | |
"region": "AS", | |
"currency": { | |
"code": "AFN", | |
"name": "Afghan afghani", | |
"symbol": "؋" |
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
[ | |
{ | |
"product id":10000001, | |
"name":"Almarai Full Fat milk 2.75L", | |
"original_price":0.750, | |
"discounted_price":0.725, | |
"final_price":0.725, | |
"thumbnail url":"https://i.imgur.com/iERgiww.png", | |
"search keywords":"milk, almarai, almaraimilk", | |
"description":"Almarai Full Fat milk", |
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
-----BEGIN PRIVATE KEY----- | |
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDc9HsyR38XNlnW | |
+wpi+8Dx74U7dyDGBz4Kj85q/kl+u4x/KosS9OliK4x1C/0qQOTZVoi472a0VA1b | |
epBuoqb8zUs4PsaUcmCp/5LAvre09JAohEdy7iz2RlnzVVDiZFfZjtM+7EQBlxI2 | |
aN+6ljdiFuvLcxvZqncJQIING4pCKXljMHLVCCyAfcI80thSc/S0Qx/T9XxyQdV+ | |
xNE1AAe0iYSQnkryOJzLMwogwptxfWeLVt5vGFYDA7yIjXoMLFaI0vz77FFEKIl/ | |
XTVMaYcW6wAX0yW9VPik4yXAC3BOcF00c+LlcZxs5LJ1lhJUqOuwxJst+t+/5zxU | |
sFGrwb6TAgMBAAECggEAJjqakiFyqMZ7lsmKi4O5Z2Kkr5w17G1WW6dz9GkYuDek | |
4F+w/k+njZexTpMLc2MU9VGWiEDLiUm9oeU71hiIQdcXO50I6Kg9d0xDzNtyl3l0 | |
872nSwhQeS/E4mgRfYoU9QxUGl/wiEHmIcnVY8gXvv3uQB4jZG6s98nUdoYcTsPh |
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
-----BEGIN CERTIFICATE----- | |
MIIGtzCCBZ+gAwIBAgIQBVTPRNyo/ObwMiD6gpbbvTANBgkqhkiG9w0BAQsFADBN | |
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMScwJQYDVQQDEx5E | |
aWdpQ2VydCBTSEEyIFNlY3VyZSBTZXJ2ZXIgQ0EwHhcNMTkwODIyMDAwMDAwWhcN | |
MjEwODI2MTIwMDAwWjBtMQswCQYDVQQGEwJCSDEPMA0GA1UEBxMGTWFuYW1hMSMw | |
IQYDVQQKExpCYW5rIG9mIEJhaHJhaW4gYW5kIEt1d2FpdDELMAkGA1UECxMCSVQx | |
GzAZBgNVBAMTEmF1dGguYmJrb25saW5lLmNvbTCCASIwDQYJKoZIhvcNAQEBBQAD | |
ggEPADCCAQoCggEBALIkZMaTcDgk756PE27y9atDTqy0sm4OyngDGaLB7/MHVJ6/ | |
L0A6hiZu1LYSN1xIIxzPN6xGbBGGLhoNb4JTzBGGdpodK6yH45VvYFuwxz/SvHOs | |
E4BIyIX34HW7UPW7PD+pyH6S8ORMGSe8cgepGsq2kRV28Cw6MOvtRkSEUxfGxDaa |
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 | |
LOCATION="$(date +/home/rashid/Pictures/workday_shots/%Y/%m/%d)" | |
mkdir -p $LOCATION | |
cd $LOCATION | |
DISPLAY=:0 scrot '%Y-%m-%d-%H%M.jpg' -q 20 |
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
let N = 10; | |
let ispace = ""; | |
let jspace = ""; | |
let counter = 0; | |
for(let i=0; i<N;i++){ | |
ispace += " "; | |
console.log("%c i is " + ispace + i,'background: #222; color: #bada55') | |
for(let j=0; j<i;j++) { | |
jspace += " "; |