-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
134 lines (93 loc) · 10 KB
/
feed.xml
File metadata and controls
134 lines (93 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>RWDR</title>
<description>A simple blog.
</description>
<link>http://localhost:4000/</link>
<atom:link href="http://localhost:4000/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Sun, 16 May 2021 22:42:02 +0900</pubDate>
<lastBuildDate>Sun, 16 May 2021 22:42:02 +0900</lastBuildDate>
<generator>Jekyll v3.8.6</generator>
<item>
<title>JAVA HW(1) - 로또 생성기</title>
<description><p>인터넷을 뒤져보지 않고 고민해서 만들었는데, 코드를 구현해보고 답지를 찾아보니 아쉬움이 많이 듭니다. 그래도 족적을 남기기 위해서 글 작성합니다.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">import</span> <span class="nn">java.util.Arrays</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span>...</description>
<pubDate>Thu, 13 May 2021 12:20:52 +0900</pubDate>
<link>http://localhost:4000/java/2021/05/13/java_hw(1).html</link>
<guid isPermaLink="true">http://localhost:4000/java/2021/05/13/java_hw(1).html</guid>
<category>java</category>
</item>
<item>
<title>JAVA (4) - 배열</title>
<description><ul> <li><a href="#array">배열</a> <ul> <li><a href="#create">선언과 생성</a></li> <li><a href="#init">초기화</a></li> <li><a href="#dimarray">다차원 배열</a></li> </ul> </li> </ul> <hr /> <h2 id="array">배열</h2> <p>배열이란 같은 유형의 값을 하나의 묶어서 저장하는 것으로 많은 양의 값을...</description>
<pubDate>Wed, 12 May 2021 12:20:52 +0900</pubDate>
<link>http://localhost:4000/java/2021/05/12/java(4).html</link>
<guid isPermaLink="true">http://localhost:4000/java/2021/05/12/java(4).html</guid>
<category>java</category>
</item>
<item>
<title>JAVA (3) - 조건/반복문</title>
<description><ul> <li><a href="#scanner">스캐너</a></li> <li><a href="#option">조건문</a> <ul> <li><a href="#if">if문</a></li> <li><a href="#dupif">중첩 if문</a></li> <li><a href="#switch">switch문</a></li> <li><a href="#dupswitch">중첩 switch문</a></li> <li><a href="#random">* 랜덤 함수</a></li> </ul> </li> <li><a href="#rep">반복문</a> <ul> <li><a href="#for">for문</a></li> <li><a href="#dupfor">중첩 for문</a></li>...</description>
<pubDate>Tue, 11 May 2021 15:20:52 +0900</pubDate>
<link>http://localhost:4000/java/2021/05/11/java(3).html</link>
<guid isPermaLink="true">http://localhost:4000/java/2021/05/11/java(3).html</guid>
<category>java</category>
</item>
<item>
<title>JAVA (2) - 연산자</title>
<description><ul> <li><a href="#operator">연산자</a> <ul> <li><a href="#arithops">산술 연산자</a></li> <li><a href="#unary">단항 연산자</a></li> <li><a href="#prepost">전위/후위 연산자</a></li> <li><a href="#plmi">부호 연산자</a></li> <li><a href="#bool">논리 연산자</a></li> <li><a href="#booldeny">논리부정 연산자</a></li> <li><a href="#shiftops">쉬프트 연산자</a></li> <li><a href="#relops">비교 연산자</a></li> <li><a href="#assiops">대입...</description>
<pubDate>Mon, 10 May 2021 12:20:52 +0900</pubDate>
<link>http://localhost:4000/java/2021/05/10/java(2).html</link>
<guid isPermaLink="true">http://localhost:4000/java/2021/05/10/java(2).html</guid>
<category>java</category>
</item>
<item>
<title>JAVA (1)</title>
<description><ul> <li><a href="#java">JAVA</a> <ul> <li><a href="#jdk">JDK 설치</a></li> <li><a href="#ldata">eclipse 설치</a></li> </ul> </li> <li><a href="#datatype">변수의 타입</a> <ul> <li><a href="#int">정수</a></li> <li><a href="#float">실수</a></li> <li><a href="#char">문자</a></li> <li><a href="#boolean">논리형</a></li> </ul> </li> <li><a href="#print">출력문</a> <ul> <li><a...</description>
<pubDate>Fri, 07 May 2021 12:20:52 +0900</pubDate>
<link>http://localhost:4000/java/2021/05/07/java.html</link>
<guid isPermaLink="true">http://localhost:4000/java/2021/05/07/java.html</guid>
<category>java</category>
</item>
<item>
<title>boolean 미세 팁</title>
<description><p>True, False 는 논리형 데이터로 python에서 type 함수로 확인할 경우에 bool이라고 뜹니다. 그런데 bool 타입 뒤에 + 0 를 붙이면 True는 1, False는 0으로 바뀌게 됩니다. 물론 int 함수로 형...</description>
<pubDate>Thu, 04 Feb 2021 12:20:52 +0900</pubDate>
<link>http://localhost:4000/python/2021/02/04/python-tnf.html</link>
<guid isPermaLink="true">http://localhost:4000/python/2021/02/04/python-tnf.html</guid>
<category>python</category>
</item>
<item>
<title>R - reshape2</title>
<description><p>데이터 구조 변경 패키지 <code class="highlighter-rouge">reshape2</code>를 이용하여 데이터 구조를 바꾸어보겠습니다. 여기서 말하는 데이터 구조는 데이터 타입(data type)을 말하는 것이 아니라 wide data, long data를 의미합니다.</p> <ul> <li><a href="#datastr">데이터 구조</a> <ul>...</description>
<pubDate>Wed, 09 Dec 2020 12:20:52 +0900</pubDate>
<link>http://localhost:4000/r/2020/12/09/naturalsort.html</link>
<guid isPermaLink="true">http://localhost:4000/r/2020/12/09/naturalsort.html</guid>
<category>r</category>
</item>
<item>
<title>R - reshape2</title>
<description><p>데이터 구조 변경 패키지 <code class="highlighter-rouge">reshape2</code>를 이용하여 데이터 구조를 바꾸어보겠습니다. 여기서 말하는 데이터 구조는 데이터 타입(data type)을 말하는 것이 아니라 wide data, long data를 의미합니다.</p> <ul> <li><a href="#datastr">데이터 구조</a> <ul>...</description>
<pubDate>Wed, 09 Dec 2020 12:20:52 +0900</pubDate>
<link>http://localhost:4000/r/2020/12/09/reshape.html</link>
<guid isPermaLink="true">http://localhost:4000/r/2020/12/09/reshape.html</guid>
<category>r</category>
</item>
<item>
<title>R - stringr</title>
<description><p>문자 편집 패키지 <code class="highlighter-rouge">stringr</code>를 이용하여 문자 데이터를 편집해보겠습니다.</p> <ul> <li><a href="#stringr">stringr 패키지</a></li> <li><a href="#detect">str_detect</a></li> <li><a href="#count">str_count</a></li> <li><a href="#combine">str_c</a></li> <li><a href="#length">str_length</a></li> <li><a href="#locate">str_locate</a></li> <li><a href="#length">str_length</a></li> <li><a href="#substr">str_sub</a></li> <li><a href="#replace">str_replace</a></li> <li><a...</description>
<pubDate>Mon, 07 Dec 2020 12:20:52 +0900</pubDate>
<link>http://localhost:4000/r/2020/12/07/stringr.html</link>
<guid isPermaLink="true">http://localhost:4000/r/2020/12/07/stringr.html</guid>
<category>r</category>
</item>
<item>
<title>AWS- EC2, S3, EMR(작성중)</title>
<description><p>Amazon Web Services(AWS)는 전 세계적으로 분포한 데이터 센터에서 175개가 넘는 완벽한 기능의 서비스를 제공하는, 세계적으로 가장 포괄적이며, 널리 채택되고 있는 클라우드 플랫폼입니다. 빠르게 성장하는 스타트업, 가장 큰 규모의 엔터프라이즈, 주요...</description>
<pubDate>Mon, 30 Nov 2020 17:20:52 +0900</pubDate>
<link>http://localhost:4000/hadoop/2020/11/30/aws.html</link>
<guid isPermaLink="true">http://localhost:4000/hadoop/2020/11/30/aws.html</guid>
<category>hadoop</category>
</item>
</channel>
</rss>