<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>자기개발하는 QA</title>
    <link>https://shuiii.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Thu, 25 Jun 2026 02:42:53 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>뚜뚜히</managingEditor>
    <image>
      <title>자기개발하는 QA</title>
      <url>https://tistory1.daumcdn.net/tistory/4774249/attach/f7971c284fd94054b61a83ac7729e0c1</url>
      <link>https://shuiii.tistory.com</link>
    </image>
    <item>
      <title>맛집지도 만들기 01. html 복습</title>
      <link>https://shuiii.tistory.com/92</link>
      <description>&amp;lt;!DOCTYPE html&amp;gt; // 기본 포맷은 ! 입력 후 탭이나 엔터
&amp;lt;html lang=&quot;en&quot;&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt;
    &amp;lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&amp;gt;
    &amp;lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;..</description>
      <category>지식/개인프로젝트</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/92</guid>
      <comments>https://shuiii.tistory.com/92#entry92comment</comments>
      <pubDate>Tue, 13 Dec 2022 08:20:00 +0900</pubDate>
    </item>
    <item>
      <title>Rust 4</title>
      <link>https://shuiii.tistory.com/89</link>
      <description>타입 별칭을 사용하는 방법

type File = String

Struct로 구조체 만들기rust에는 기본적으로 변수에 할당하지 않고 이동을 시킨다. 이동된 변수는 기존 위치에서 이동 되어 다시 참조할 수 없다

	let f1_moved = f1;
	/// 에러 발생
	println!(&quot;{:?}&quot;, f1);

String::from(&amp;rdquo;a&amp;rdquo;)와 &amp;ldquo;a&amp;rdquo; 는 다른 타입이다.
벡터의 reserve 메소드는 메모리 재..</description>
      <category>지식/Rust</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/89</guid>
      <comments>https://shuiii.tistory.com/89#entry89comment</comments>
      <pubDate>Wed, 23 Nov 2022 08:38:07 +0900</pubDate>
    </item>
    <item>
      <title>Rust 03</title>
      <link>https://shuiii.tistory.com/87</link>
      <description>고급 함수 정의

명시적인 수명 애너테이션

fn add_with_lifetimes&amp;lt;'a, 'b&amp;gt;(i: &amp;amp;'a i32, j: &amp;amp;'b i32) -&amp;gt; i32 {
  *i + *j                                   // &amp;lt;1&amp;gt;
}

fn main() {
  let a = 10;
  let b = 20;
  let res = add_with_lifetimes(&amp;amp;a, &amp;amp;b);   ..</description>
      <category>지식/Rust</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/87</guid>
      <comments>https://shuiii.tistory.com/87#entry87comment</comments>
      <pubDate>Tue, 15 Nov 2022 17:13:24 +0900</pubDate>
    </item>
    <item>
      <title>Rust 02</title>
      <link>https://shuiii.tistory.com/86</link>
      <description>실행 프로그램 만들기
$ rustc &amp;lt;file&amp;gt;
// file OS에 맞는 실행가능한 파일
카고로 컴파일
$ cargo run
// -v : verbose 상세 출력 플래그
$ cargo build
// -release : optimized 릴리즈 빌드
변수정의 함수 호출
fn main() {            
  let a = 10;          // ide에서 타입 추정한다. 타입 추정하려면 선언 하위에서 해당 변수를 
						..</description>
      <category>지식/Rust</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/86</guid>
      <comments>https://shuiii.tistory.com/86#entry86comment</comments>
      <pubDate>Tue, 15 Nov 2022 08:19:04 +0900</pubDate>
    </item>
    <item>
      <title>Rust 01</title>
      <link>https://shuiii.tistory.com/85</link>
      <description>시작전
사용 PC : Mac Book Pro 14'' M1
   Compiling hello v0.1.0
error: linking with `cc` failed: exit code: 1
  |
  = note: &quot;cc&quot; &quot;-arch arm64&quot;
이런 형식의 에러가 계속 발생 -&amp;gt; X-code&amp;nbsp; 최신 업데이트가 필요하다고 해서 최신으로 설치
에러 계속 발생 -&amp;gt; X-code developer 가 자동으로 설치되지 않아서 발생된 문제
..</description>
      <category>지식/Rust</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/85</guid>
      <comments>https://shuiii.tistory.com/85#entry85comment</comments>
      <pubDate>Tue, 1 Nov 2022 20:16:22 +0900</pubDate>
    </item>
    <item>
      <title>HTML&amp;amp;CSS 6. Music Player</title>
      <link>https://shuiii.tistory.com/80</link>
      <description>대망의 플레이어
너무 어려웠다,,,

전에 만든 Library 코드랑 이거랑 좀 비교를 해봐야겠다,,, 어딘가 틀렸는데 뭔지를 모르겠다,,,
&amp;nbsp;
&amp;nbsp;
See the Pen  Untitled by baeseohee (@baeseohee) on CodePen.

&amp;nbsp;
&amp;nbsp;</description>
      <category>지식/개인프로젝트</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/80</guid>
      <comments>https://shuiii.tistory.com/80#entry80comment</comments>
      <pubDate>Wed, 5 Jan 2022 00:38:18 +0900</pubDate>
    </item>
    <item>
      <title>HTML&amp;amp;CSS 5. 책 소개 페이지</title>
      <link>https://shuiii.tistory.com/78</link>
      <description>두둥탁...
몇시간에 걸쳐서 만들었는데 리플릿에서 잘되던게 이상하게 코드펜에서만 상하좌우 메인 마진이 안걸린다...
왜일까....ㅠㅜㅠ
&amp;nbsp;

&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
See the Pen  Library by baeseohee (@baeseohee) on CodePen.

&amp;nbsp;
&amp;nbsp;</description>
      <category>지식/개인프로젝트</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/78</guid>
      <comments>https://shuiii.tistory.com/78#entry78comment</comments>
      <pubDate>Mon, 3 Jan 2022 23:15:44 +0900</pubDate>
    </item>
    <item>
      <title>HTML&amp;amp;CSS 4. 플레이 리스트 만들기</title>
      <link>https://shuiii.tistory.com/75</link>
      <description>일단 여기까지 했는데,
조만간 내가 좋아하는 음악들로 소스 수정해서 올려야지
&amp;nbsp;

&amp;nbsp;
졸려서 못하겠다,,,
&amp;nbsp;

  See the Pen 
  Playlist by baeseohee (@baeseohee)
  on CodePen.


&amp;nbsp;</description>
      <category>지식/개인프로젝트</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/75</guid>
      <comments>https://shuiii.tistory.com/75#entry75comment</comments>
      <pubDate>Mon, 3 Jan 2022 00:01:28 +0900</pubDate>
    </item>
    <item>
      <title>HTML&amp;amp;CSS 3. 음악 재생 화면 만들기</title>
      <link>https://shuiii.tistory.com/73</link>
      <description>음악 재생 될때 원통이 똥그래래~ 하고 돌아가는 애니메이션을 적용해서 만들어보았다.
&amp;nbsp;

&amp;nbsp;
보라보라~한 색감이 요즘같다 (코쓱)
애니메이션을 적용할때 싱크를 어떻게 맞춰야 하는건지 잘 모르겠다...
&amp;nbsp;
See the Pen  Untitled by baeseohee (@baeseohee) on CodePen.

&amp;nbsp;
&amp;nbsp;
&amp;nbsp;</description>
      <category>지식/개인프로젝트</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/73</guid>
      <comments>https://shuiii.tistory.com/73#entry73comment</comments>
      <pubDate>Sun, 2 Jan 2022 02:10:26 +0900</pubDate>
    </item>
    <item>
      <title>QA 3. Test Analysis - 테스트 분석</title>
      <link>https://shuiii.tistory.com/71</link>
      <description>&amp;nbsp;
나는 보통 테스트 분석을 테스트 설계단계에서 진행해왔던 것 같다.
내가 생각하는 테스트 분석은 Spec을 정리하여 요건이나 테스트 항목 등을 명확히 하는 활동 으로 요약 할 수 이
있을 것 같다
테스트 분석 단계에서 확인해야할 사항
분석단계에서 보통 확인하여 정리하는 내용은

테스트 대상의 전체 요건
테스트 대상 그룹화
테스트 조건 확인하기

이렇게 세가지로 나눌 수 있을 것 같다.
1. 테스트 대상의 전체 요건확인하기
나는 보통 요건을 확..</description>
      <category>지식/QA</category>
      <author>뚜뚜히</author>
      <guid isPermaLink="true">https://shuiii.tistory.com/71</guid>
      <comments>https://shuiii.tistory.com/71#entry71comment</comments>
      <pubDate>Fri, 31 Dec 2021 17:28:12 +0900</pubDate>
    </item>
  </channel>
</rss>