목록개발이야기 (529)
준호씨의 블로그
url 을 만들 때 공백(' ')은 %20 으로 바꿔준다던지 처리를 해 주어야 한다. libcurl 의 curl_easy_escape 함수를 이용하면 손쉽게 처리 할 수 있다. #include #include #include int main() { CURL *curl = curl_easy_init(); if (curl) { char *string = "hello world"; printf("%lu\n", strlen(string)); // 11 char *output = curl_easy_escape(curl, string, strlen(string)); if (output) { printf("Encoded: %s\n", output); // Encoded: hello%20world curl_free(o..
github 일일커밋 인증샷 자동화. python. selenium from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from PIL import Image from io import BytesIO driver = None try: driver = webdriver.Chrome('/Users/junho85/Downloads/chromedriver') driver.get("https://github.com/junho85") elem = driver.find_element_by_class_name("js-yearly-contributions") last_date_elem =..
설정 -> 멤버쉽 -> 누구나 가입할 수 있습니다. 체크 후 저장 참고 https://wpguide.usefulparadigm.com/posts/577