목록개발이야기 (528)
준호씨의 블로그
fileA a b c 10 20 30 fileB b c d 30 fileA - fileB $ grep -F -x -v -f fileB fileA 1 10 20 shorter way $ grep -Fxvf fileB fileA 1 10 20 man grep ... -F, --fixed-strings Interpret pattern as a set of fixed strings (i.e. force grep to behave as fgrep). -f file, --file=file Read one or more newline separated patterns from file. Empty pattern lines match every input line. Newlines are not considered p..
There is a number. >>> num = 2.3 What if you want to use with string? (String-Number concatenation) You should convert number to string. There are several ways. str function >>> str(num) '2.3' repr function >>> repr(num) '2.3' Backquote >>> `num` '2.3' but, not in python3 >>> `num` File "", line 1 `num` ^ SyntaxError: invalid syntax format >>> "%f" % (num) '2.300000' pyformat >>> '{}'.format(num..
Sometimes we want to know a specific port is open or not. check 80 port of google.com $ tcping google.com 80 google.com port 80 open. check 8080 port of daum.net $ tcping daum.net 8080 daum.net port 8080 closed. check 25 port of mta5.am0.yahoodns.net $ tcping mta5.am0.yahoodns.net 25 mta5.am0.yahoodns.net port 25 open. If you want to use it on a Mac, install it first. $ brew install tcping
SPF (Sender Policy Framework) should written in TXT record. It was considered to use SPF record (type 99). But, developers of SPF choose TXT record. So, you should write SPF in TXT record. References Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1 - 3.1. DNS Resource Records https://tools.ietf.org/html/rfc7208#section-3.1 SPF Record Deprecated https://mxtoolbox.c..
https://developer.apple.com/support/app-store/ 에서 확인 가능 하다. 앱스토어 기준이다. iOS 앱을 개발할 때 참고하면 좋은 수치이다. iOS 9, 10 의 점유율을 합하면 95% 이다. 특별한 사유가 없다면 iOS 9 이상만 지원해도 큰 문제는 없을 것 같다. https://david-smith.org/iosversionstats/ 에 가 보면 버전별, 기기별 통계 등 다양한 정보가 있다. 다만 자신의 앱 사용자 데이터에 근거한 것이기 때문에 완벽하다고 볼 수는 없다. 참고용으로 볼 만 할 것이다.