<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DEV &#8211; Minhwan Record</title>
	<atom:link href="https://wp.goodzz.shop/category/dev/feed" rel="self" type="application/rss+xml" />
	<link>https://wp.goodzz.shop</link>
	<description>기록</description>
	<lastBuildDate>Mon, 27 Jan 2025 10:59:46 +0000</lastBuildDate>
	<language>ko-KR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://wp.goodzz.shop/wp-content/uploads/2023/08/unnamed-150x150.jpg</url>
	<title>DEV &#8211; Minhwan Record</title>
	<link>https://wp.goodzz.shop</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>가상환경</title>
		<link>https://wp.goodzz.shop/dev/python/3515</link>
					<comments>https://wp.goodzz.shop/dev/python/3515#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Mon, 27 Jan 2025 10:53:44 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://wp.goodzz.site/?p=3515</guid>

					<description><![CDATA[파이썬 가상환경 생성 가상환경 활성화 가상환경 비활성화 패키지 목록 백업패키지 목록을 requirements.txt 파일에 저장하고, 패키지 목록을 이용해 복원가상환경에서 다음 명령으로 한 번에 설치]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/python/3515/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>날짜 시간 함수 정리 ( 어제, 내일, 일주일전, 한달전, 다음달, 다음주 등등 )</title>
		<link>https://wp.goodzz.shop/dev/php/3508</link>
					<comments>https://wp.goodzz.shop/dev/php/3508#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Fri, 18 Oct 2024 15:41:05 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://wp.goodzz.site/?p=3508</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/php/3508/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] SSMS  빨간줄</title>
		<link>https://wp.goodzz.shop/dev/mssql/3372</link>
					<comments>https://wp.goodzz.shop/dev/mssql/3372#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Tue, 16 Apr 2024 08:10:17 +0000</pubDate>
				<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=3372</guid>

					<description><![CDATA[편집 > intelliSense > 로컬 캐시 새로 고침 Ctrl + Shift + R]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/mssql/3372/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] SSMS 쿼리작성시 변수 사용</title>
		<link>https://wp.goodzz.shop/dev/mssql/3370</link>
					<comments>https://wp.goodzz.shop/dev/mssql/3370#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Tue, 16 Apr 2024 08:07:28 +0000</pubDate>
				<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=3370</guid>

					<description><![CDATA[DECLARE @regdate varchar(10);SET @regdate = &#8216;2024-04-24&#8217;; SELECT * FROM study_group_tbl WHERE LEFT(group_no, 6) = &#8216;202400&#8217; AND del_yn = &#8216;N&#8217; AND regdate = @regdate]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/mssql/3370/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[JS] 파리미터 값 가져오기</title>
		<link>https://wp.goodzz.shop/dev/javascript/3289</link>
					<comments>https://wp.goodzz.shop/dev/javascript/3289#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Mon, 08 Apr 2024 04:09:11 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=3289</guid>

					<description><![CDATA[https://gurtn.tistory.com/126 기초 URL 중 파라미터 값만 JavaScript로 추출해야 할 경우가 생깁니다. 모든 값 가져오기 JAVASCRIPT new&#160;URLSearchParams&#160;함수를 사용하면&#160;location.search&#160;안에 존재하는 [key, value] 형식으로 묶여있는 파라미터를 얻을 수 있게됩니다. 특정 값만 가져오기 JAVASCRIPT 해당 방법은&#160;location.search&#160;부분만을 가져오지 않고 전체 URL을 필요로 합니다.&#160;전체 URL을 구하는 방법은&#160;location.href으로&#160;구할 수 있습니다. 현재의 주소를 URL 형식으로 바꿔주고&#160;get&#160;메서드를 통해 특정 파라미터를 가져올 수 있습니다.]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/javascript/3289/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] 2016이하 버전에서 group_concat 기능 유사하게</title>
		<link>https://wp.goodzz.shop/dev/mssql/2991</link>
					<comments>https://wp.goodzz.shop/dev/mssql/2991#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Mon, 25 Mar 2024 05:16:16 +0000</pubDate>
				<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=2991</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/mssql/2991/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] 생년월일로 나이 구하기</title>
		<link>https://wp.goodzz.shop/dev/mssql/2939</link>
					<comments>https://wp.goodzz.shop/dev/mssql/2939#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Wed, 20 Mar 2024 06:45:47 +0000</pubDate>
				<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=2939</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/mssql/2939/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] DATE 포맷 자르기</title>
		<link>https://wp.goodzz.shop/dev/mssql/2502</link>
					<comments>https://wp.goodzz.shop/dev/mssql/2502#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Fri, 16 Feb 2024 02:24:48 +0000</pubDate>
				<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=2502</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/mssql/2502/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] DB복원후 사용자 매핑시 기존에 사용자가 있다고 에러날때</title>
		<link>https://wp.goodzz.shop/dev/2435</link>
					<comments>https://wp.goodzz.shop/dev/2435#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Tue, 13 Feb 2024 01:27:02 +0000</pubDate>
				<category><![CDATA[DEV]]></category>
		<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=2435</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/2435/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[ASP.NET] POST 전송값 컨트롤러에서 받기</title>
		<link>https://wp.goodzz.shop/dev/asp-net/2215</link>
					<comments>https://wp.goodzz.shop/dev/asp-net/2215#respond</comments>
		
		<dc:creator><![CDATA[goodzz]]></dc:creator>
		<pubDate>Mon, 15 Jan 2024 05:07:56 +0000</pubDate>
				<category><![CDATA[ASP.NET]]></category>
		<guid isPermaLink="false">https://wp.goodzz.shop/?p=2215</guid>

					<description><![CDATA[컨트롤러 메소드의 매개변수로 직접 받기: 컨트롤러 메소드의 매개변수로 직접 받기2: 컨트롤러 메소드의 매개변수로 직접 모델 객체 받기:]]></description>
		
					<wfw:commentRss>https://wp.goodzz.shop/dev/asp-net/2215/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
