알쏭달쏭 SD카드 규격, 이런 뜻입니다
SD카드는 그 많던 플래시메모리의 표준 규격이 됐습니다. 그런데 이것도 따져보면 종류가 참 많습니다. 요즘은 SDXC가 나오고 있고, SDHC도 많이 쓰입니다. 게다가 UHS니 클래스니, 따져볼 게 참 많습니다...그래서 결국 우리가 껍데기만 두고 메모리카드를 구분해야 할 것은 SD카드냐, 크기가 작은 마이크로SD카드냐 뿐입니다. 마이크로SD카드는 어댑터에 끼워 SD카드처럼 쓸 수도 있습니다. 가격 차이도 별로 없습니다. 그러니 플래시메모리는 마이크로SD를 구입하는 편이 대체로 낫습니다.
Saturday, June 20, 2015
Tuesday, June 16, 2015
현재 실행중인 perl 스크립트의 파일명 얻는 법
__FILE__ is the actual file that the Perl interpreter deals with during compilation, including its full path.
사용예:
use File::Basename;
my $dirname = dirname(__FILE__);
레퍼런스 : How do I get the full path to a Perl script that is executing?
사용예:
use File::Basename;
my $dirname = dirname(__FILE__);
레퍼런스 : How do I get the full path to a Perl script that is executing?
Labels:
Perl
Regex to match any character including new lines
/s modifier 를 사용하면 됨
$string =~ /(START)(.+?)(END)/s;
키워드 : 개행문자
검색어 : perl regular expression including newline
레퍼런스 : Regex to match any character including new lines
$string =~ /(START)(.+?)(END)/s;
키워드 : 개행문자
검색어 : perl regular expression including newline
레퍼런스 : Regex to match any character including new lines
Labels:
Perl
Wednesday, June 10, 2015
TextMate 에서 쉽게 comment 하는 법
html 등 코드 에디팅 할때 comment 할 부분 선택하고
Command + / 하면 됨
키워드 : 주석, edit, code, editing
Command + / 하면 됨
키워드 : 주석, edit, code, editing
Labels:
텍스트에디터
Friday, June 5, 2015
Tuesday, June 2, 2015
OS X에서 셸 스크립트를 더블클릭으로 실행하게 하는 법법
Shell Script 파일의 확장자를 .command 로 해준다.
(밑의 출처에는 chmod a+x scriptname 해주는 방법만 소개한 사람이 있는데 이 방법만으론 안됨)
키워드 : extension
출처 : How to run a shell script in OS X by double-clicking?
(밑의 출처에는 chmod a+x scriptname 해주는 방법만 소개한 사람이 있는데 이 방법만으론 안됨)
키워드 : extension
출처 : How to run a shell script in OS X by double-clicking?
Labels:
UNIX
Subscribe to:
Posts (Atom)