분류 전체보기 577

mailchimp 가입에서 발송까지 간단한 리뷰

이전에 설명했던 mailchimp의 간단한 사용법을 정리 했습니다. (Review라고 봐도 됩니다.)mailchimp는 이메일 마켓팅툴로 유명합니다. 천천히... 아래의 그림위주로 보시면 됩니다. 1. 가입을 해야 합니다. 2. 가입을 하고 메일주소 확인 메일을 수신한후 처리 합니다. 3. 확인처리... 환료4. 계정의 디테일 설정을 합니다.5. 메뉴를 둘러 보겠습니다.... 처음 화면은 Dashboard 6. 메뉴 : Automation7. 가장중요한 Campaigns8. 메일링 리스트9. report menu10. Template 메뉴11. 이제 메일 캠페인(발송)을 만들어 보죠....12. 먼저 수신메일 주소를 적습니다. 메일링 리스트가 없는 1개의 메일 주소는 테스트 메일주소로 간주 됩니다.13...

mail 2016.05.30

HTTP redirect TO HTTPS

Apache 를 이용하는경우 http접속을 강제로 https로 리다이렉트해줄수가 있다.이렇게 하면 보안접속으로만 접속이 가능하므로, 사용자 모르게 보안이 강화된다. REF : https://wiki.apache.org/httpd/RedirectSSL NameVirtualHost *:80 ServerName mysite.example.com DocumentRoot /usr/local/apache2/htdocs Redirect permanent /secure https://mysite.example.com/secure ServerName mysite.example.com DocumentRoot /usr/local/apache2/htdocs SSLEngine On# etc... 아래는 모든 접속을 HTTPS로..

프로그램/web 2016.05.24

MACOS SSH File Access

맥에서 SSH데몬을 이용하여 연결 파일시스템을 사용할수 있습니다. 아래를 참조 바랍니다. http://osxfuse.github.io/ mulder@/Volumes$ mkdir SSHFSmulder@/Volumes$ mulder@/Volumes$ /usr/local/bin/sshfs root@172.30.1.23:/opt/tp /Volumes/SSHFSroot@172.30.1.23's password: mulder@/Volumes$ mulder@/Volumes$ mulder@/Volumes$ lsMacintosh HD SECOND SSHFSmulder@/Volumes$ cd SSHFSmulder@/Volumes/SSHFS$ lsLICENSE node_modules store thingplus-gatewa..

편하게 살자 2016.03.26

vi no autoindentation

vi 사용중 자동인덴테이션으로 에디팅에 문제가 있다면 살며시 아래의 명령어를...:setl noai nocin nosi inde= 원본사이트 : http://vim.wikia.com/wiki/How_to_stop_auto_indenting Disabling auto indent for the current fileEditTo see the current indenting settings, and where they were set, enter::verbose set ai? cin? cink? cino? si? inde? indk? If you are editing a particular file and you want to prevent auto indenting within that file, ente..

편하게 살자 2016.01.03