목록분류 전체보기 (2068)
준호씨의 블로그
itunes 팟캐스트 https://itunes.apple.com/kr/podcast/%EA%B9%80%EC%98%81%EC%B2%A0-%ED%83%80%EC%9D%BC%EB%9F%AC%EC%9D%98-%EC%A7%84%EC%A7%9C-%EB%AF%B8%EA%B5%AD%EC%8B%9D-%EC%98%81%EC%96%B4-%EA%B9%80%EC%98%81%EC%B2%A0%EC%9D%98-%ED%8C%8C%EC%9B%8Cfm/id1208902466?l=en&mt=2 최근화 일부만 있음 팟빵 http://www.podbbang.com/ch/13410?e=22360147 SBS 홈페이지에서 바로듣기 혹은 mp3 다운로드 http://wizard2.sbs.co.kr/w3/template/tp1_podcast_rad..
야금야금 먹지 좀 마세요. Let's save the sweets for the kids. Okay? 용건만 간단히 해주세요. Just get to the point. 선입견을 버리세요. Don't judge a book by its cover. 인상 좀 펴세요. Life's tough, get a helmet. 여긴 경로 우대석이에요. Excuse me, those seats are for the elderly. 설치지 좀 마세요. Stop being that kid. 제 마음이 콩밭에 가 있었네요. I have something on my mind. 헛수고했네요. All that for nothing. 미끄러우니까, 조심하세요. Be careful! It's slipper..
전원 어댑터만 사야 되는게 아니고 충전 케이블 별도 구매 해야 됨. Apple 87W USB-C 전원 어댑터 89,000원 https://www.apple.com/kr/shop/product/MNF82KH/A/apple-87w-usb-c-%EC%A0%84%EC%9B%90-%EC%96%B4%EB%8C%91%ED%84%B0 USB-C 충전 케이블(2m) 25,000원 https://www.apple.com/kr/shop/product/MLL82FE/A/usb-c-charge-cable-2m
Requests http://docs.python-requests.org/en/master/user/quickstart/ 사용자 편의성은 이게 제일 좋은 것 같다. 설치 $ pip install reuqests 사용 $ python >>> import requests >>> r = requests.get('https://api.github.com/events') >>> print(r.url) https://api.github.com/events >>> print(r.content) [{"id":"7687592113","type":"PushE... post, put, delete, head, options... >>> r = requests.post('http://httpbin.org/post', data..
라인수가 많지 않으면 cat 결과를 array 에 넣어서 읽으면 됩니다. my @lines = `cat file.txt`; for my $line (@lines) { print $line; } 라인수가 많으면 file open 을 이용합니다. #!/usr/bin/env perl use strict; use warnings; my $file = "file.txt"; open my $info, $file or die "Could not open $file: $!"; while (my $line = ) { print $line; } close $info;