<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>냉장고 속 푸딩</title>
    <link>https://multifidus.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Fri, 15 May 2026 22:39:02 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>PT sun</managingEditor>
    <item>
      <title>유사배열(Array-Like Object)</title>
      <link>https://multifidus.tistory.com/185</link>
      <description>1. 숫자 형태의 indexing 이 가능하다.
: 배열과 마찬가지로 0부터 시작하는 index 를 통한 접근이 가능하다.
&amp;nbsp;
2. length 프로퍼티가 있다.
: 객체가 가지고 있는 요소의 개수를 나타내는 length 프로퍼티가 존재한다.
&amp;nbsp;
3. 배열의 기본 메소드를 사용할 수 없다.
: 따로 구현하여 배열처럼 사용할 수도 있지만, 유사배열이 완전한 배열이 아닌 가장 큰 이유로 push(), splice() 등 배열의 기본 메소드..</description>
      <category>JavaScript</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/185</guid>
      <comments>https://multifidus.tistory.com/185#entry185comment</comments>
      <pubDate>Sun, 19 Sep 2021 23:10:51 +0900</pubDate>
    </item>
    <item>
      <title>CSS 자식요소, 자식의 자식의 ... 요소 선택하기</title>
      <link>https://multifidus.tistory.com/184</link>
      <description>&amp;nbsp;
1. 자식 요소 선택

이런 식으로 news-content 의 자식 요소인 경우(바로 하위에 위치하는)
&amp;nbsp;
&amp;gt; 를 사용하면 선택된다.
&amp;nbsp;


&amp;nbsp;
2. 자식의 자식 요소 선택
&amp;nbsp;

그러나 만약.. news-content 안에 수많은 자식 요소가 있고 그 자식요소의 또 자식이라면..?
심지어 극단적으로 자식의 자식의 자식의 자식의.. 이런 경우도 발생이 가능한 경우라면?
바로 하위요소를 인식하는 &amp;gt;..</description>
      <category>CSS</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/184</guid>
      <comments>https://multifidus.tistory.com/184#entry184comment</comments>
      <pubDate>Thu, 14 Jan 2021 15:01:53 +0900</pubDate>
    </item>
    <item>
      <title>일정한 사이즈 div 안에 이미지 넣기 (잘리면서 꽉차게,  잘리지 않고 축소)</title>
      <link>https://multifidus.tistory.com/182</link>
      <description>+) 이번 프로젝트를 진행하면서 퍼블리싱 부분에서 가장 애를 먹었던 부분.
혹시 제가 놓친 점이나 더 좋은 방법, 다른 방법이 있다면 얼마든지 알려주시기 바랍니다.
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
1. 잘리면서 꽉차게

* 상위 div 에 꽉 채우고 싶다.
* 비율이 깨지지 않도록 한다.
* 이미지의 가운데 부분이 보여지도록 한다.
* 넘치는 부분은 자른다.
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
HTML 예시
&amp;lt;div class=&quot;image-..</description>
      <category>CSS</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/182</guid>
      <comments>https://multifidus.tistory.com/182#entry182comment</comments>
      <pubDate>Thu, 17 Dec 2020 15:24:50 +0900</pubDate>
    </item>
    <item>
      <title>없으면 insert, 있으면 update (ON DUPLICATE KEY UPDATE 활용)</title>
      <link>https://multifidus.tistory.com/181</link>
      <description>&amp;nbsp;

&amp;nbsp;

PK 와 동일한 레코드를 insert 하려고 하면 insert 가 아닌 update 를 수행한다.
이 때, update 하고자 하는 대상을 ON DUPLICATE KEY UPDATE 에 적어주었다.
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;

+) 다른 예시
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;

&amp;nbsp;
위와 같이 수정하고자 하는 항목을 1개든, 2개든 여러개든 수정할만큼 하고 나서 수정..</description>
      <category>MySQL</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/181</guid>
      <comments>https://multifidus.tistory.com/181#entry181comment</comments>
      <pubDate>Thu, 17 Dec 2020 14:44:45 +0900</pubDate>
    </item>
    <item>
      <title>== 와 === 은 확실히 다르다</title>
      <link>https://multifidus.tistory.com/180</link>
      <description>가볍게 예를 들어,
&amp;nbsp;
String 0 인 변수 a ,
Number 0 인 변수 b
var a = &quot;0&quot;;
var b = 0;
가 있다고 하자.
&amp;nbsp;
데이터 타입이 다르므로, 분명 a 와 b 를 비교하면 false 가 나올 것 같다.
&amp;nbsp;

a == b 는 true 이다.
&amp;nbsp;
&amp;nbsp;
한편&amp;nbsp; === 를 쓰게 되면?

a === b 는 false 이다.
&amp;nbsp;
&amp;nbsp;
=== 가 == 에 비해 좀 더 ..</description>
      <category>JavaScript</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/180</guid>
      <comments>https://multifidus.tistory.com/180#entry180comment</comments>
      <pubDate>Mon, 14 Dec 2020 16:59:55 +0900</pubDate>
    </item>
    <item>
      <title>[jQuery] 체크박스 disabled 속성 개수 구하기</title>
      <link>https://multifidus.tistory.com/179</link>
      <description>$(&quot;input[name='??']:disabled&quot;).length;</description>
      <category>JavaScript</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/179</guid>
      <comments>https://multifidus.tistory.com/179#entry179comment</comments>
      <pubDate>Wed, 11 Nov 2020 17:43:48 +0900</pubDate>
    </item>
    <item>
      <title>[회원가입 폼] input text onchange</title>
      <link>https://multifidus.tistory.com/178</link>
      <description>	&amp;lt;!-- 이메일 --&amp;gt;
	&amp;lt;div class=&quot;join-content&quot;&amp;gt;
	    &amp;lt;div class=&quot;input-label&quot;&amp;gt;이메일&amp;lt;span&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;
	    &amp;lt;div class=&quot;join-input&quot; id=&quot;email-icon&quot;&amp;gt;
	        &amp;lt;input type=&quot;text&quot; class=&quot;form-control&quot; style=&quot;width:200px;..</description>
      <category>CSS</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/178</guid>
      <comments>https://multifidus.tistory.com/178#entry178comment</comments>
      <pubDate>Thu, 1 Oct 2020 01:27:36 +0900</pubDate>
    </item>
    <item>
      <title>&amp;lt;li&amp;gt; 클릭 시 해당 value 값 input type text 에 넣기</title>
      <link>https://multifidus.tistory.com/174</link>
      <description>&amp;lt;ul&amp;gt;
   &amp;lt;li value=&quot;1&quot;&amp;gt;&amp;lt;a href=&quot;#&quot; onclick=&quot;statusChange(this)&quot;&amp;gt;1&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
   &amp;lt;li value=&quot;2&quot;&amp;gt;&amp;lt;a href=&quot;#&quot; onclick=&quot;statusChange(this)&quot;&amp;gt;2&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;




&amp;lt;input type=&quot;text&quot; id=&quot;tt&quot;&amp;gt;





&amp;lt..</description>
      <category>JavaScript</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/174</guid>
      <comments>https://multifidus.tistory.com/174#entry174comment</comments>
      <pubDate>Sat, 12 Sep 2020 00:49:44 +0900</pubDate>
    </item>
    <item>
      <title>Bootstrap-Material DateTimePicker 사용법</title>
      <link>https://multifidus.tistory.com/173</link>
      <description>&amp;lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.5.10/js/ripples.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.5.10/js/material.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;l..</description>
      <category>CSS</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/173</guid>
      <comments>https://multifidus.tistory.com/173#entry173comment</comments>
      <pubDate>Sat, 12 Sep 2020 00:44:49 +0900</pubDate>
    </item>
    <item>
      <title>쌍따옴표를 문자열로 쓰는 법</title>
      <link>https://multifidus.tistory.com/172</link>
      <description>&amp;nbsp;
쌍따옴표는 문자열의 시작과 끝을 맺는데 쓰인다.
&amp;nbsp;
헌데 예를들어, &quot;sofa&quot; 라는 쌍따옴표를 포함한 문자열 자체를 하나의 String 으로 하고 싶다면?
&amp;nbsp;
&quot;&quot;sofa&quot;&quot; 은 문법표기상 맞지 않다.
&amp;nbsp;
이럴땐 문자열로 취급할 쌍따옴표 앞에 역슬래시따옴표를 붙이면 된다.
&amp;nbsp;
&amp;nbsp;

&amp;nbsp;
&amp;nbsp;
&amp;nbsp;</description>
      <category>JavaScript</category>
      <author>PT sun</author>
      <guid isPermaLink="true">https://multifidus.tistory.com/172</guid>
      <comments>https://multifidus.tistory.com/172#entry172comment</comments>
      <pubDate>Fri, 11 Sep 2020 21:59:45 +0900</pubDate>
    </item>
  </channel>
</rss>