준호씨의 블로그
push 함수를 이용하면 간단히 배열을 합칠 수 있다. my @array1 = (1,2); my @array2 = (3,4); my @array3 = (); push(@array3, @array1); push(@array3, @array2); print "@array3\n"; # 1 2 3 4 이렇게 해도 같음. 그런데 push 가 좀 더 효과적이고 한다. my @array4 = (@array1, @array2); print "@array4\\n"; # 1 2 3 4 참고 https://docstore.mik.ua/orelly/perl3/cookbook/ch04_10.htm
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;
평일 # 오늘의 휴가자 알림 0 9 * * 1-5 /ourteam/vacation_alarm.pl 참고 리눅스 반복 예약작업 cron, crond, crontab
import PlaygroundSupport PlaygroundPage.current.needsIndefiniteExecution = true 참고 http://www.thomashanning.com/concurrent-code-in-playgrounds/
dig 커맨드 $ dig mx daum.net +short 10 mx3.hanmail.net. 10 mx4.hanmail.net. 10 mx1.hanmail.net. 10 mx2.hanmail.net. host 커맨드 $ host -t MX daum.net daum.net mail is handled by 10 mx3.hanmail.net. daum.net mail is handled by 10 mx1.hanmail.net. daum.net mail is handled by 10 mx4.hanmail.net. daum.net mail is handled by 10 mx2.hanmail.net. nslookup 커맨드 처음에 server 8.8.8.8 은 안넣어도 상관 없음. DNS 서버 지정하는 부분임...
1982년 RFC821 에서 메일 서버간 25번 포트를 인터넷 이메일 전송 채널의 기본 포트로 언급 했다. 그 이후로 지금도 메일 서버간 전송하는 기본포트로 25번 포트를 사용하고 있다. 1998년 RFC2476 에서 옛 방식은 25번 쓰고 새 정책과 보안을 적용하기 위해 587 포트를 쓰기로 하였다. SMTP TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect smtp.daum.net:465 IMAP TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect imap.daum.net:993 POP3 TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect pop.daum.net:995 참고 h..