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
import time | |
import pandas as pd | |
import numpy as np | |
from selenium import webdriver | |
def get_timing_performance(t): | |
return { | |
"DNS_time": t['domainLookupEnd'] - t['domainLookupStart'], | |
"INIT_CNT_time": t['connectEnd'] - t['connectStart'], | |
"SSL_time": t['connectEnd'] - t['secureConnectionStart'], |
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
import telegram #텔레그램 모듈을 가져옵니다. | |
import requests | |
from bs4 import BeautifulSoup | |
import time | |
url = "http://ticket.cgv.co.kr/CGV2011/RIA/CJ000.aspx/CJ_002_PRIME_ZONE_LANGUAGE" | |
payload = str(//CGV PAYLOAD//) | |
headers = { |
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
pragma solidity 0.5.0 | |
contract SimpleContract { | |
uint256 value = 0; | |
bool success = false; | |
constructor() public { | |
value = 1; | |
} | |
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
dddd |