<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Alienus Non diutius</title>
    <link>https://luckey.tistory.com/</link>
    <description>Alienus Non diutius</description>
    <language>ko</language>
    <pubDate>Sat, 16 May 2026 20:34:26 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>luckey</managingEditor>
    <image>
      <title>Alienus Non diutius</title>
      <url>https://t1.daumcdn.net/cfile/tistory/23275E345424FF7035</url>
      <link>https://luckey.tistory.com</link>
    </image>
    <item>
      <title>amchart 한국지도(독도포함)</title>
      <link>https://luckey.tistory.com/454</link>
      <description>참고사이트 : https://www.amcharts.com/demos/map-image-drill-down/

&amp;nbsp;

Map Image Drill-Down - amCharts
Map image drill-down is a typical scenario for widely used functionality such as &amp;ldquo;store locator&amp;rdquo; and alike. This demo shows multiple aspects ..</description>
      <category>Programming/javascript</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/454</guid>
      <comments>https://luckey.tistory.com/454#entry454comment</comments>
      <pubDate>Sat, 16 Mar 2024 09:23:31 +0900</pubDate>
    </item>
    <item>
      <title>키워드별 매칭(테스트)</title>
      <link>https://luckey.tistory.com/452</link>
      <description>CREATE TABLE TEST_MEMBER(
    idx INT unsigned NOT NULL AUTO_INCREMENT COMMENT '고유번호',
    mName VARCHAR(20) COMMENT '이름',
    PRIMARY KEY (idx)
) COMMENT='멤버';
insert into TEST_MEMBER(mName) values('홍길동');
insert into TEST_MEMBER(mName) values('이순신');
in..</description>
      <category>Programming/mysql</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/452</guid>
      <comments>https://luckey.tistory.com/452#entry452comment</comments>
      <pubDate>Thu, 15 Jun 2023 11:04:46 +0900</pubDate>
    </item>
    <item>
      <title>CI 한글파일 업로드 안될 경우</title>
      <link>https://luckey.tistory.com/451</link>
      <description>파일업로드시 hwp 파일만 업로드가 안될 경우에러 메세지가 The filetype you are attempting to upload is not allowed. 라고 나오고 업로드가 되지 않으면/application/config/mimes.php 에 hwp 확장자를 허용해 주어야 하는데 아래의 형식 모두 설정해 주어야 업로드가 됨
'hwp'   =&amp;gt;  array('application/haansofthwp', 'application/cdfv2-c..</description>
      <category>Programming/CodeIgniter</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/451</guid>
      <comments>https://luckey.tistory.com/451#entry451comment</comments>
      <pubDate>Thu, 14 Jul 2022 07:06:14 +0900</pubDate>
    </item>
    <item>
      <title>계층형 게시판(답변글 하단정렬)</title>
      <link>https://luckey.tistory.com/450</link>
      <description>테이블구조



이름
내용


idx
고유번호


grpNo
그룹번호(원글번호)


grpOrd
출력순서


depth
게시물 깊이


bTitle
게시물 제목



일반등록grpNo = 0, grpOrd = 0, depth = 0 으로 등록데이터 등록이후 grpNo 값을 현재 등록한 게시물의 고유번호 값으로 update답글등록1. 원글에 대한 정보(grpNo, depth) 를 가져와서 데이터 등록시 grpNo, depth+12. 등록하고자 하는데이터가..</description>
      <category>Programming/php</category>
      <category>계층형게시판</category>
      <category>답변정렬</category>
      <category>답변하단</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/450</guid>
      <comments>https://luckey.tistory.com/450#entry450comment</comments>
      <pubDate>Thu, 23 Jun 2022 11:40:40 +0900</pubDate>
    </item>
    <item>
      <title>카카오맵, 네이버맵, 티맵 길찾기 링크연결</title>
      <link>https://luckey.tistory.com/449</link>
      <description>&amp;lt;a href=&quot;javascript:naverMap('신월4동주민센터','37.5246971','126.8400793');&quot;&amp;gt;네이버 경로 안내&amp;lt;/a&amp;gt;
&amp;lt;a href=&quot;javascript:kakaoMap('신월4동주민센터','37.5246971','126.8400793');&quot;&amp;gt;카카오 경로 안내&amp;lt;/a&amp;gt;
&amp;lt;a href=&quot;javascript:tMap('신월4동주민센터','37.5246971','126.840079..</description>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/449</guid>
      <comments>https://luckey.tistory.com/449#entry449comment</comments>
      <pubDate>Tue, 7 Dec 2021 09:35:34 +0900</pubDate>
    </item>
    <item>
      <title>kakao map api 를 이용한 다중위치등록 UI 구성</title>
      <link>https://luckey.tistory.com/448</link>
      <description>1개의 행사에 여러지역이 등록될 수 있는경우를 위한 카카오맵 api를 연동한 위치등록 ui 구성

기본적인 FLOW는 다음과 같다.1. 위치등록을 위한 주소를 검색한다.(주소검색에서는 위치명으로 검색이 안되는 경우가 많다.)2. 검색된 주소를 클릭하면 해당 위치가 지도에 표시되며 등록창에도 등록이 된다.3. 정확한 위치에 point를 찍어주기 위한 point 변경이 필요하다.4. 저장을 누르면 해당 위치가 저장된다.(DB저장)이용방법1. 카카오지도 ap..</description>
      <category>Programming/javascript</category>
      <category>다중마커</category>
      <category>마커변경</category>
      <category>마커수정</category>
      <category>주소로위치등록</category>
      <category>카카오맵</category>
      <category>카카오맵api</category>
      <category>카카오맵마커</category>
      <category>카카오맵위치등록ui</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/448</guid>
      <comments>https://luckey.tistory.com/448#entry448comment</comments>
      <pubDate>Wed, 13 Oct 2021 09:21:13 +0900</pubDate>
    </item>
    <item>
      <title>summernote editor php 이미지 업로드 및 글자수 체크</title>
      <link>https://luckey.tistory.com/447</link>
      <description>summernote 다운로드https://summernote.org/getting-started/

&amp;nbsp;

Summernote - Super Simple WYSIWYG editor
Super Simple WYSIWYG Editor on Bootstrap Summernote is a JavaScript library that helps you create WYSIWYG editors online.
summernote.org


필요한 css 와 j..</description>
      <category>Programming/php</category>
      <category>editor</category>
      <category>image처리</category>
      <category>php</category>
      <category>Summernote</category>
      <category>uploadimage</category>
      <category>서머노트</category>
      <category>에디터이미지</category>
      <category>에디터이미지처리</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/447</guid>
      <comments>https://luckey.tistory.com/447#entry447comment</comments>
      <pubDate>Tue, 12 Oct 2021 10:12:27 +0900</pubDate>
    </item>
    <item>
      <title>IOS 업그레이드 후 Face ID 메뉴가 안보이는 경우</title>
      <link>https://luckey.tistory.com/446</link>
      <description>드디어 마스크를 쓰고 있어도 애플워치를 차고 있으면, 아이폰이 해제가 된다!!아이폰 업데이트 하고(IOS 14.5) 애플워치도 업데이트(watchOS 7.3) 해 주어야 한다.
이후에 아이폰의 설정 &amp;gt; Face ID 및 암호 에서 APPLE WATCH로 잠금 해제를 설정해 주어야 하는데!!안보인다.. Face ID 및 암호가 보이지 않는다......

언제인지 모르겠지만 아이폰에서 설정을 바꿔놓은 듯 하다... 처음 셋팅할때 외에는 볼 필요가 없었..</description>
      <category>Review</category>
      <category>faceid</category>
      <category>ios</category>
      <category>ios14.5</category>
      <category>애플워치</category>
      <category>잠금해제</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/446</guid>
      <comments>https://luckey.tistory.com/446#entry446comment</comments>
      <pubDate>Wed, 28 Apr 2021 09:49:51 +0900</pubDate>
    </item>
    <item>
      <title>ckeditor youtube 넣기</title>
      <link>https://luckey.tistory.com/445</link>
      <description>ckeditor 에서 youtube 를 추가하고 글 작성을 완료하면 내용이 없어지는 현상 발생..일단 글등록시 html_purify 를 사용중이라면 config 설정 부분에 두줄을 추가해 준다.
$config-&amp;gt;set('HTML.SafeIframe', true);
$config-&amp;gt;set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.v..</description>
      <category>Programming/javascript</category>
      <category>allowdContent</category>
      <category>CKEditor</category>
      <category>htmlpurifier</category>
      <category>iframe</category>
      <category>youtube</category>
      <category>youtube-embed-wrapper</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/445</guid>
      <comments>https://luckey.tistory.com/445#entry445comment</comments>
      <pubDate>Wed, 9 Dec 2020 16:41:19 +0900</pubDate>
    </item>
    <item>
      <title>ckeditor 글자수 체크하기</title>
      <link>https://luckey.tistory.com/444</link>
      <description>ckeditor 에서 작성된 글자 최대 개수또는 이미지 최대 업로드 개수를 제한.복사+붙여넣기 는 제어가 되지 않으나, 수정시 경고창이 계속 뜨기 때문에 귀찮게 할 수 있음.글자수는 태그 및 공백제거하고 한글, 영문 구분없이 무조건 1글자로 계산함.
//editor 의 id 값을 넣어줍니다.
var editorStatus = false;
var editor = CKEDITOR.instances.content;

//editor 텍스트가 변경되면 setC..</description>
      <category>Programming/html</category>
      <category>CKEditor</category>
      <category>f_SkipTags_html</category>
      <category>글자수</category>
      <category>글자수제한</category>
      <category>에디터글자수제한</category>
      <category>태그제거</category>
      <author>luckey</author>
      <guid isPermaLink="true">https://luckey.tistory.com/444</guid>
      <comments>https://luckey.tistory.com/444#entry444comment</comments>
      <pubDate>Thu, 3 Dec 2020 20:34:06 +0900</pubDate>
    </item>
  </channel>
</rss>