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 transactions = ""; | |
$(".transfer-info-container").each(function(i, obj) { | |
let dateStr = obj.children[2].innerHTML.replace("<span class=\"sent-date uppercase\">Sent on ", "").replace("</span>", ""); | |
let amounts = obj.children[0].children[1]; | |
let usdStr = amounts.children[0].innerHTML.replace(" <span class=\"currency-code\">USD</span>", ""); | |
let inrStr = ""; | |
if (amounts.children.length > 1){ | |
inrStr = amounts.children[1].innerHTML.replace(" </span><span class=\"currency-code small\">INR</span>", "").replace("<span class=\"small\">", ""); | |
} |
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
from multiprocessing import Process, Manager | |
import time | |
number_of_processes = 1000 | |
# Current time in milliseconds since epoch | |
def getCurrentTimeInMilliSeconds(): | |
return int(time.time() * 1000) | |
def produce(i): |
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
.ads-ad { | |
background-color: rgba(147, 182, 239, 0.3); | |
font-style: italic; | |
} |