<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>뒤죽박죽 연구실</title>
    <link>https://oztheme.tistory.com/</link>
    <description>나는 언제나 배고프다. 진짜.</description>
    <language>ko</language>
    <pubDate>Thu, 23 Apr 2026 02:59:13 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>0x1101</managingEditor>
    <image>
      <title>뒤죽박죽 연구실</title>
      <url>https://t1.daumcdn.net/cfile/tistory/2156453452F0EA991F</url>
      <link>https://oztheme.tistory.com</link>
    </image>
    <item>
      <title>ListView 아이템 역순으로 표시하기</title>
      <link>https://oztheme.tistory.com/100</link>
      <description>&lt;p&gt;ListView에서 아이템은 위에서 아래로 표시되는 것이 기본이고, 따라서 가장 위에 있는 항목이 Array의 0번 항목이 된다.&lt;/p&gt;
&lt;p&gt;가령, 최신 데이터를 가장 위에 표기하기 위해 ListView를 역순으로 표기해야할 때가 있는데, 이를 제대로 표기하기 위해 여러 방법이 있겠지만 간단하게 사용할 수 있는 두가지를 작성한다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;1. ListView 위젯에 stackFromBottom 속성을 준다.&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;stackFromBottom을 레이아웃 xml에서 주고싶을 때 아래와 같이 작성한다.&lt;/p&gt;
&lt;pre class=&quot;routeros&quot;&gt;&lt;code&gt;  &amp;lt;ListView
      android:id=&quot;@+id/listview&quot;
      android:layout_width=&quot;match_parent&quot;
      android:layout_height=&quot;match_parent&quot;
      andorid:stackFromBottom=&quot;true&quot; /&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;stackFromBottom을 클래스에서 주고싶을 때 아래와 같이 작성한다.&lt;/p&gt;
&lt;pre class=&quot;css&quot;&gt;&lt;code&gt;  ListView listview;
  listview.findViewById(R.id.listview);
  listView.setStackFromBottom();&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&amp;nbsp;&lt;/h2&gt;
&lt;h2&gt;2. ArrayList에 삽입할 때, 앞 부분부터 삽입한다.&lt;/h2&gt;
&lt;p&gt;ArrayList의 경우 add(Object o) 함수를 사용하여 Object를 삽입하면 먼저 삽입한 Object가 가장 앞의 위치를 가지게 된다.&lt;/p&gt;
&lt;p&gt;이를 역으로 생각해 add(Index i, Object o) 함수를 사용하여 Object를 삽입하면 가장 먼저 삽입한 Object가 뒤로 밀려나게 되고 가장 최근 삽입한 Object가 가장 앞의 위치를 가지게 된다.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;사용법은 일반적인 ArrayList와 다르지 않다&lt;/p&gt;
&lt;pre class=&quot;angelscript&quot;&gt;&lt;code&gt;  ArrayList&amp;lt;int&amp;gt; arrayList = new ArrayList&amp;lt;&amp;gt;();
  for (int i = 0 ; i &amp;lt; 5 ; i++){
          arrayList.add(0, i);
  }

  출력 : 4, 3, 2, 1, 0&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>팁/Android</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/100</guid>
      <comments>https://oztheme.tistory.com/100#entry100comment</comments>
      <pubDate>Thu, 16 Apr 2020 15:39:22 +0900</pubDate>
    </item>
    <item>
      <title>macOS Flutter SDK 설치</title>
      <link>https://oztheme.tistory.com/99</link>
      <description>&lt;p&gt;&lt;figure class=&quot;imageblock alignLeft&quot; data-filename=&quot;flutter1.png&quot; data-origin-width=&quot;1000&quot; data-origin-height=&quot;1000&quot; width=&quot;200&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/uS6ya/btqCgSY81bk/KNPJ9vRgLLbND2SOyqQG20/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/uS6ya/btqCgSY81bk/KNPJ9vRgLLbND2SOyqQG20/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/uS6ya/btqCgSY81bk/KNPJ9vRgLLbND2SOyqQG20/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FuS6ya%2FbtqCgSY81bk%2FKNPJ9vRgLLbND2SOyqQG20%2Fimg.png&quot; data-filename=&quot;flutter1.png&quot; data-origin-width=&quot;1000&quot; data-origin-height=&quot;1000&quot; width=&quot;200&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;h3&gt;작성 기준&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Flutter SDK v1.12.13 (hotfix 8, stable)&lt;/li&gt;
&lt;li&gt;macOS Catalina 10.15.1&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;참고&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Flutter 공식 홈페이지 (&lt;a href=&quot;https://flutter-ko.dev/docs/get-started/install/macos&quot;&gt;https://flutter-ko.dev/docs/get-started/install/macos&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;h3&gt;설치&lt;/h3&gt;
&lt;hr /&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;설치 번들을 다운로드하고 폴더에 압축을 푼다. HOME 폴더에 sdk라는 폴더를 만들었다.&lt;/p&gt;
&lt;pre class=&quot;crystal&quot;&gt;&lt;code&gt;$ mkdir ~/sdk
$ cd ~/sdk
$ unzip ~/Downloads/[Flutter 설치 번들] ~/sdk/&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;
&lt;p&gt;Flutter 도구를 path에 추가한다.&lt;/p&gt;
&lt;pre class=&quot;bash&quot;&gt;&lt;code&gt;$ export PATH=&quot;$PATH:'pwd'/flutter/bin&quot;

# 'pwd'는 현재 디렉토리를 출력하는 명령어이다 =&amp;gt; ~/sdk&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;path를 .zshrc 추가하여 터미널을 실행할 때마다 사용할 수 있다.&lt;br /&gt;vi 또는 nano 등을 이용하여 파일을 열거나 생성하여 아래와 같이 입력한다.&lt;/p&gt;
&lt;pre class=&quot;bash&quot;&gt;&lt;code&gt;  $ nano ~/.zshrc

  export PATH=&quot;$PATH:$HOME/sdk/flutter/bin&quot; 입력 후 저장&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;
&lt;p&gt;필요에 따라 개발 바이너리를 사전 다운로드한다.&lt;/p&gt;
&lt;pre class=&quot;elixir&quot;&gt;&lt;code&gt;$ flutter precache&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;
&lt;p&gt;Flutter 최신 버전 확인을 위해 업데이트를 한다.&lt;/p&gt;
&lt;p&gt;참고: &lt;a href=&quot;https://flutter-ko.dev/docs/development/tools/sdk/upgrading&quot;&gt;https://flutter-ko.dev/docs/development/tools/sdk/upgrading&lt;/a&gt;&lt;/p&gt;
&lt;pre class=&quot;elixir&quot;&gt;&lt;code&gt;$ flutter upgrade&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;
&lt;p&gt;익명성 사용 통계, 기본 크래시 보고서 익명 보고 해제&lt;/p&gt;
&lt;p&gt;'Google에서는 Flutter SDK를 다운로드하면 Google 서비스 약관에 동의하게 됩니다.'라고 표기하였다.&lt;br /&gt;이 기능이 불필요한 경우 이 기능을 비활성화하기 위해 아래와 같은 명령어를 실행한다.&lt;/p&gt;
&lt;pre class=&quot;gams&quot;&gt;&lt;code&gt;$ flutter config --no-analytics
$ flutter config&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;
&lt;p&gt;설정을 완료하기 위해 플랫폼 의존성이 있는지 doctor를 실행한다.&lt;/p&gt;
&lt;pre class=&quot;elixir&quot;&gt;&lt;code&gt;$ flutter doctor&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;나의 경우 Android Studio만 설치했으므로 아래와 같이 나왔다.&lt;/p&gt;
&lt;pre class=&quot;vhdl&quot;&gt;&lt;code&gt;Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.12.13+hotfix.8, on Mac OS X 10.15.1 19B88,
    locale ko-KR)

[!] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
    ✗ Android licenses not accepted.  To resolve this, run: flutter doctor
      --android-licenses
[✗] Xcode - develop for iOS and macOS
    ✗ Xcode installation is incomplete; a full installation is necessary for iOS
      development.
      Download at: https://developer.apple.com/xcode/download/
      Or install Xcode via the App Store.
      Once installed, run:
        sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
        sudo xcodebuild -runFirstLaunch
    ✗ CocoaPods not installed.
        CocoaPods is used to retrieve the iOS and macOS platform side's plugin
        code that responds to your plugin usage on the Dart side.
        Without CocoaPods, plugins will not work on iOS or macOS.
        For more info, see https://flutter.dev/platform-plugins
      To install:
        sudo gem install cocoapods
[!] Android Studio (version 3.5)
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
[!] Connected device
    ! No devices available&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;</description>
      <category>10.15.1</category>
      <category>catalina</category>
      <category>flutter</category>
      <category>Hackintosh</category>
      <category>MacOS</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/99</guid>
      <comments>https://oztheme.tistory.com/99#entry99comment</comments>
      <pubDate>Tue, 25 Feb 2020 16:37:31 +0900</pubDate>
    </item>
    <item>
      <title>연말정산에서 신용카드와 체크카드 어느게 유리할까?</title>
      <link>https://oztheme.tistory.com/98</link>
      <description>&lt;h2 contenteditable=&quot;true&quot;&gt;&lt;span&gt;공제되는 결제 방식&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;신용카드, 체크카드&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;등의 기명식 카드류&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;현금영수증&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;기프트카드, &lt;/span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;교통카드&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;등을 기명화하여 사용하는 경우&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 contenteditable=&quot;true&quot;&gt;&lt;span&gt;쓴 돈의 얼마가 소득공제되는가&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;소득공제가 이루어지기 위해선 &lt;b&gt;최저사용금액&lt;/b&gt; 이상 사용해야함&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;최저사용금액 = 연봉(1년 총 수입)의 25%&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;최저사용금액 이후 신용카드 15%, 체크카드 30%, 현금영수증 30%가 소득공제대상 금액&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3 contenteditable=&quot;true&quot;&gt;&lt;span&gt;무엇이 최저사용금액에 먼저 채워지는가&lt;/span&gt;&lt;/h3&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;신용카드 (15%)가 우선으로 채워진다&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;그 다음 체크카드 (30%)와 현금영수증 (30%) 등으로 채워진다.&lt;/span&gt;&lt;/p&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 contenteditable=&quot;true&quot;&gt;&lt;span&gt;공제한도는 얼마인가&lt;/span&gt;&lt;/h2&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;(총 급여 기준)&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;7천만 원 이하 = 300만 원&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;7천만 원 이상 1.2억 원 = 250만 원&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;1.2억 초과 = 200만 원&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3 contenteditable=&quot;true&quot;&gt;&lt;span&gt;추가 공제 (공제 한도와 별도)&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;전통시장 (30%, 2018년 기준 40%, 대규모 지하상가 포함)&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;대중교통 (30%, 2018년 기준 40%)&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p contenteditable=&quot;true&quot;&gt;&lt;span&gt;도서, 공연비 (30%, 총 급여 7천만 원 이하 해당)&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;</description>
      <category>세줄요약/연말정산</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/98</guid>
      <comments>https://oztheme.tistory.com/98#entry98comment</comments>
      <pubDate>Wed, 24 Jul 2019 13:23:08 +0900</pubDate>
    </item>
    <item>
      <title>암호화폐 채굴하기 - 4. 이더리움(ETH) 채굴하기</title>
      <link>https://oztheme.tistory.com/97</link>
      <description>&lt;h1 id=&quot;암호화폐-채굴하기---4.-이더리움(eth)-채굴하기&quot;&gt;&lt;a name=&quot;암호화폐-채굴하기---4.-이더리움(eth)-채굴하기&quot; href=&quot;#암호화폐-채굴하기---4.-이더리움(eth)-채굴하기&quot;&gt;&lt;/a&gt;암호화폐 채굴하기 - 4. 이더리움(ETH) 채굴하기&lt;/h1&gt;
&lt;h4 id=&quot;이전-글-:&quot;&gt;&lt;a name=&quot;이전-글-:&quot; href=&quot;#이전-글-:&quot;&gt;&lt;/a&gt;이전 글 :&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://oztheme.tistory.com/92&quot;&gt;&lt;strong&gt;마이닝 풀 정하기 (&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;a href=&quot;http://oztheme.tistory.com/92&quot;&gt;http://oztheme.tistory.com/92&lt;/a&gt;)&lt;/strong&gt;&lt;br /&gt;&lt;a href=&quot;http://oztheme.tistory.com/92&quot;&gt;&lt;strong&gt;모네로 채굴하기 (&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;a href=&quot;http://oztheme.tistory.com/93&quot;&gt;http://oztheme.tistory.com/93&lt;/a&gt;)&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;※읽기 전에

이 글에서 다루는 채굴에 사용된 테스트 PC는 다음과 같은 사양으로 이루어져있습니다.
CPU : AMD RYZEN 7 1700 (3.65Ghz 오버클럭)
GPU : SAPPHIRE AMD RADEON RX460 NITRO 4GB (SAPPHIRE RX560 PULSE 4GB 바이오스 적용, 램 타이밍 조절)
RAM : SAMSUNG DDR4 2133 8GB * 2

개개인에 따라, 심지어는 같은 그래픽카드라도 해시파워는 다를 수 있으며,
채굴로 인해 일어나는 모든 문제는 작성자가 책임지지 않습니다.
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&quot;이더리움&quot;&gt;&lt;a name=&quot;이더리움&quot; href=&quot;#이더리움&quot;&gt;&lt;/a&gt;이더리움&lt;/h2&gt;
&lt;p&gt;이더리움은 분산 애플리케이션 제작을 위한 대체 프로토콜 생산을 위해 탄생한 알트코인이다. 비트코인보다 활용도가 높고 효율적이기 때문에 알트코인 중에서도 성장 가능성이 가장 높다고 평가되고있다.&lt;/p&gt;&lt;p&gt;더불어 비트코인에서 파생된 암호화폐인 알트코인 중 유일하게 거래소에서 다른 알트코인을 거래할 수 있는 암호화폐이기 때문에 이더리움의 경쟁력은 매우 크며, 국내 채굴시장에서 가장 큰 비율을 차지하고있기도 하다.&lt;/p&gt;&lt;p&gt;Claymore’s Dual Ethereum AMD+NVIDIA GPU Miner를 사용해 이더리움을 채굴해볼 것이다.&lt;/p&gt;
&lt;h2 id=&quot;채굴&quot;&gt;&lt;a name=&quot;채굴&quot; href=&quot;#채굴&quot;&gt;&lt;/a&gt;채굴&lt;/h2&gt;
&lt;h3 id=&quot;준비물&quot;&gt;&lt;a name=&quot;준비물&quot; href=&quot;#준비물&quot;&gt;&lt;/a&gt;준비물&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;마이닝 풀 계정 또는 이더리움 지갑 주소&lt;/li&gt;&lt;li&gt;Claymore’s Dual Ethereum AMD+NVIDIA GPU Miner&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Claymore Miner는 싱글 마이닝 모드일 경우 1%, 이더리움과 DCR 또는 시아코인을 함께 채굴하는 듀얼 마이닝 모드일 경우 2%의 수수료를 책정한다. 1시간 중 36초~72초 동안 개발자의 마이너 계정으로 채굴이 진행된다.&lt;/p&gt;&lt;p&gt;Claymore Miner는 지난번에 작성했던 xmr-stak과는 다르게 일정 시간마다 현재 해시량을 자동으로 보여준다. xmr-stak처럼 궁금할 때마다 ‘h’ 버튼을 누르지 않아도 된다.&lt;/p&gt;&lt;p&gt;&lt;code&gt;'s'&lt;/code&gt;, &lt;code&gt;'0~9'&lt;/code&gt;, &lt;code&gt;'r'&lt;/code&gt; 단축키를 이용한다.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;s : 채굴 해시량을 보여준다.&lt;/li&gt;&lt;li&gt;0~9 : 0~9키를 이용하여 그래픽 카드 On/Off가 가능하다. (여러 그래픽카드를 사용할 시 유용)&lt;/li&gt;&lt;li&gt;r : 마이닝 네트워크와의 전송이 원활하게 이루어지지 않은 경우 다시 연결한다.&lt;/li&gt;&lt;/ul&gt;
&lt;h3 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;Claymore’s Dual Ethereum AMD+NVIDIA GPU Miner 스레드&lt;br /&gt;&lt;a href=&quot;https://bitcointalk.org/index.php?topic=1433925.0&quot;&gt;https://bitcointalk.org/index.php?topic=1433925.0&lt;/a&gt;&lt;/p&gt;&lt;p&gt;다운로드&lt;br /&gt;MEGA : &lt;a href=&quot;https://mega.nz/#F!O4YA2JgD!n2b4iSHQDruEsYUvTQP5_w&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://mega.nz/#F!O4YA2JgD!n2b4iSHQDruEsYUvTQP5_w&quot;&gt;https://mega.nz/#F!O4YA2JgD!n2b4iSHQDruEsYUvTQP5_w&lt;/a&gt;&lt;br /&gt;Google Drive : &lt;a href=&quot;https://drive.google.com/open?id=0B69wv2iqszefdFZUV2toUG5HdlU&quot;&gt;https://drive.google.com/open?id=0B69wv2iqszefdFZUV2toUG5HdlU&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;가장 최신버전의 마이너를 다운받는다. Windows와 Linux 모두 지원하기 때문에 자신이 사용중인 운영체제에 맞춰 받으면 된다.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;※주의
백신 프로그램이 채굴 프로그램을 바이러스 또는 악성코드에 감염되어 채굴프로그램을 실행한 것으로 오인할 수 있으므로,
실행이 안될 시 백신을 잠시 비활성화하거나 예외 설정을 하기 바랍니다.
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&quot;시작&quot;&gt;&lt;a name=&quot;시작&quot; href=&quot;#시작&quot;&gt;&lt;/a&gt;시작&lt;/h3&gt;
&lt;p&gt;압축을 풀고 폴더에 들어가면 여러 파일들이 있는데, 필요한 것은 실행 프로그램인 &lt;code&gt;EthDcrMiner64.exe&lt;/code&gt; 파일이 아니라 &lt;code&gt;start.bat&lt;/code&gt; 파일이다. 메모장이나 기타 에디터 프로그램을 이용해 파라미터(매개변수)을 지정, 배치파일 (.bat)을 실행하는 것으로 채굴이 시작된다.&lt;/p&gt;
&lt;h3 id=&quot;파라미터-(매개변수)&quot;&gt;&lt;a name=&quot;파라미터-(매개변수)&quot; href=&quot;#파라미터-(매개변수)&quot;&gt;&lt;/a&gt;파라미터 (매개변수)&lt;/h3&gt;
&lt;p&gt;대부분의 채굴 프로그램은 다음과 같이 배치파일에 파라미터를 미리 입력 후 배치파일을 실행하는 것으로 채굴을 시작한다. 다음은 필자가 사용중인 배치파일의 파라미터이다.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;EthDcrMiner64.exe -epool asia.ethash-hub.miningpoolhub.com:20535 -ewal DesignOZ.OZETH -eworker DesignOZ.OZETH -esm 2 -epsw x&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;EthDcrMiner64.exe : 실행할 프로그램&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;-epool asia.ethash-hub.miningpoolhub.com:20535 : 마이닝 풀 주소&lt;br /&gt;위의 주소는 마이닝 풀 허브의 이더리움 풀 주소이다.&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;-ewal DesignOZ.OZETH : 마이닝 풀을 이용한다면 &lt;code&gt;마이닝 풀 계정&lt;/code&gt;.&lt;code&gt;마이너 이름&lt;/code&gt;을 입력한다.&lt;br /&gt;마이닝 풀을 이용하지 않는다면 &lt;code&gt;이더리움 지갑 주소&lt;/code&gt;를 입력한다.&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;-eworker DesignOZ.OZETH&lt;br /&gt;위의 -ewal과 같이 &lt;code&gt;마이닝 풀 계정&lt;/code&gt;.&lt;code&gt;마이너 이름&lt;/code&gt; 또는 &lt;code&gt;이더리움 지갑 주소&lt;/code&gt;를 입력한다.&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;-esm 2 : Ethereum stratum mode를 설정한다.&lt;br /&gt;0 - eth-proxy 모드 (dwarfpool 이용시)&lt;br /&gt;1 - qtminer 모드 (ethpool 이용시)&lt;br /&gt;2 - miner-proxy 모드 (coinotron, mining pool hub 이용시)&lt;/p&gt;&lt;p&gt;3 - nicehash 모드 (nicehash 이용시)&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;-epsw x&lt;br /&gt;마이너의 비밀번호를 입력한다. 비밀번호를 확인하는 마이닝 풀도 있지만 내가 이용중인 마이닝 풀 허브는 검사를 하지 않기 떄문에 &lt;code&gt;x&lt;/code&gt;로 지정했다.&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;올바르게 파라미터를 지정했다면 start.bat을 실행해 채굴을 시작한다. 에러 메시지가 출력되지 않는다면 채굴을 올바르게 진행중이라는 뜻이다. 위에서도 언급했지만 실행 중 &lt;code&gt;'s'&lt;/code&gt;키를 눌러 자신의 해시파워가 얼마나 나오는지 확인할 수 있다.&lt;/p&gt;</description>
      <category>팁/Mining</category>
      <category>ETH</category>
      <category>이더리움</category>
      <category>채굴</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/97</guid>
      <comments>https://oztheme.tistory.com/97#entry97comment</comments>
      <pubDate>Mon, 29 Jan 2018 22:55:46 +0900</pubDate>
    </item>
    <item>
      <title>[채굴일기] ASIC의 진입, 시아코인 채굴을 포기하다</title>
      <link>https://oztheme.tistory.com/96</link>
      <description>&lt;h1 id=&quot;asic의-진입,-시아코인-채굴을-포기하다.&quot;&gt;&lt;a name=&quot;asic의-진입,-시아코인-채굴을-포기하다.&quot; href=&quot;#asic의-진입,-시아코인-채굴을-포기하다.&quot;&gt;&lt;/a&gt;ASIC의 진입, 시아코인 채굴을 포기하다.&lt;/h1&gt;
&lt;p&gt;어제는 이더리움(ETH)과 모네로(XMR)을 거래소로 보냈다는 만족감으로 간만에 꿀잠을 잔 것 같다. 거래소로 옮기고나서 가격이 떨어져 수익률의 파란글씨가 좀 가슴아프지만 열심히 채굴할 때에도 가격은 왔다갔다 했으니 큰 문제는 되지 않는다.&lt;/p&gt;&lt;p&gt;문제는 시아코인(SC)이다. 시아코인의 ASIC를 이용한 채굴이 풀리면서 난이도가 급속도로 상승해버렸다. 마이닝 풀 허브에서도 ‘GPU로는 더 이상 채굴일 불가능할 것 같습니다.’라는 공지가 올라왔었고, 옆에 있던 링크에 들어가니&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B0F2425A6EE7081F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B0F2425A6EE7081F&quot; width=&quot;820&quot; height=&quot;403&quot; filename=&quot;SIA.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;21일부터 급격하게 상승한 시아코인 채굴 난이도를 볼 수 있었다.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;으아아ㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏ!!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;업비트에서 입금은 안되지만 입금주소가 열리길 기다리는 마음으로 클레이모어 듀얼마이닝으로 이더리움과 같이 채굴하며 아무런 생각도 없이 조금씩 조금씩 모으고 있었지만 깔끔하게 포기해야할 것 같다. 아니 포기해야한다.&lt;/p&gt;&lt;p&gt;지금 GPU로 시아코인을 채굴한다는 것은 오히려 손해니까.&lt;/p&gt;</description>
      <category>소식/채굴일기</category>
      <category>ASIC</category>
      <category>sc</category>
      <category>Sia</category>
      <category>시아코인</category>
      <category>암호화폐</category>
      <category>젠장</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/96</guid>
      <comments>https://oztheme.tistory.com/96#entry96comment</comments>
      <pubDate>Mon, 29 Jan 2018 18:19:53 +0900</pubDate>
    </item>
    <item>
      <title>[채굴일기] 감격의 첫 암호화폐 출금</title>
      <link>https://oztheme.tistory.com/95</link>
      <description>&lt;h2 id=&quot;감격의-첫-암호화폐-출금&quot;&gt;&lt;a name=&quot;감격의-첫-암호화폐-출금&quot; href=&quot;#감격의-첫-암호화폐-출금&quot;&gt;&lt;/a&gt;감격의 첫 암호화폐 출금&lt;/h2&gt;
&lt;p&gt;채굴을 시작하고 약 한달만에 첫 출금을 했다. 처음 채굴을 시작했을 때, 무턱대고 벤치마킹을 해보기도 하고 내가 가지고있는 그래픽카드가 과연 효율이 좋은가, 전기세를 따졌을 때 수익이 발생할 수 있을까 고민도 해보며 2017년을 마무리했다.&lt;/p&gt;&lt;p&gt;첫 채굴 시작 이후 약 2주간은 갑작스런 재부팅, NVidia에 비해 제어하기 힘든 AMD GPU, 온도 제어, 전력 제어, 오버클럭과 언더볼트 등 수많은 시행착오와  라나푸스와 헤네브의 재림 (코어부활의 AMD), 설정값을 바꾸고 안정화를 진행할 때 해시의 양도 조금씩 증가하는 것을 보며 기뻐하기도 했다.&lt;/p&gt;&lt;p&gt;물론 지금은 어느정도 결론을 내리고 CPU는 xmr-stak (모네로)로 채굴을, GPU는 Claymore (Ethash 알고리즘 스위치, 이더리움 계열)로 채굴을 진행중이다.&lt;/p&gt;&lt;p&gt;이번에 처음 출금을 하면서 암호화폐와 관련해 무언가를 시도하며 처음으로 무언갈 달성했다는 그 기분을 너무 느껴보고 싶었다. 중간에 그만두면 전기세 때문에 손해일 뿐만 아니라 그 동안 투자해온 시간들이 너무나도 아까웠기 때문이다.&lt;/p&gt;&lt;p&gt;이번 출금과 더불어 이달 30일 있을 거래소 신규 원화입금 제한해제 이후 내가 가지고있는 암호화폐의 가격이 열심히 올라주기를 바란다.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;희망이 아주 가득! 가득! 들어있는 출금이다.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;

&lt;h3 id=&quot;관련-글-:&quot;&gt;&lt;a name=&quot;관련-글-:&quot; href=&quot;#관련-글-:&quot;&gt;&lt;/a&gt;관련 글 :&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://oztheme.tistory.com/93&quot;&gt;&lt;strong&gt;채굴 프로그램 설치 및 기본 설정(모네로, XMR)&lt;/strong&gt; (&lt;/a&gt;&lt;a href=&quot;http://oztheme.tistory.com/93&quot;&gt;http://oztheme.tistory.com/93&lt;/a&gt;)&lt;br /&gt;&lt;a href=&quot;http://oztheme.tistory.com/94&quot;&gt;&lt;strong&gt;xmr-stak을 이용한 Electroneum 채굴하기&lt;/strong&gt; (&lt;/a&gt;&lt;a href=&quot;http://oztheme.tistory.com/94&quot;&gt;http://oztheme.tistory.com/94&lt;/a&gt;)&lt;/p&gt;</description>
      <category>소식/채굴일기</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/95</guid>
      <comments>https://oztheme.tistory.com/95#entry95comment</comments>
      <pubDate>Sun, 28 Jan 2018 21:28:16 +0900</pubDate>
    </item>
    <item>
      <title>암호화폐 채굴하기 - 3. xmr-stak을 이용한 Electroneum 채굴하기</title>
      <link>https://oztheme.tistory.com/94</link>
      <description>&lt;h1 id=&quot;2-1.-xmr-stak을-이용한-electroneum-채굴하기.&quot;&gt;&lt;a name=&quot;2-1.-xmr-stak을-이용한-electroneum-채굴하기.&quot; href=&quot;#2-1.-xmr-stak을-이용한-electroneum-채굴하기.&quot;&gt;&lt;/a&gt;xmr-stak을 이용한 Electroneum 채굴하기&lt;/h1&gt;&lt;div&gt;&lt;h3 id=&quot;이전-글-:-마이닝-풀-정하기-(http://oztheme.tistory.com/92)&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;이전 글 :채굴 프로그램 설치 및 기본 설정 (모네로, XMR) (&lt;/span&gt;&lt;a href=&quot;http://oztheme.tistory.com/93&quot; style=&quot;font-size: 13px;&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;http://oztheme.tistory.com/9&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;3)&lt;/span&gt;&lt;/h3&gt;&lt;/div&gt;
&lt;pre&gt;&lt;code&gt;※읽기 전에.

이 글은 암호화폐에 관해 주관적인 생각이 포함되어있으며,
채굴은 AMD 라이젠 1700, 사파이어 라데온 RX460 니트로 4GB 그래픽카드(순정) 환경으로 만들어졌습니다.

개개인에 따라, 심지어는 같은 그래픽카드라도 해시파워는 다를 수 있으며,
암호화폐, 채굴로 인해 일어나는 모든 문제는 작성자가 책임지지 않습니다. 발열조심하세요^^
&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;h2 id=&quot;서론&quot;&gt;서론&lt;/h2&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;p&gt;지난 글에서는 xmr-stak을 이용하여 모네로(Monero, XMR)을 채굴하는 과정을 진행했었다. 이번 글에서는 지난 글에서 사용하였던 xmr-stak을 이용해 일렉트로니움(Electroneum, ETN)을 채굴해볼건데 운이 좋은건지 최근 마이닝 풀 허브에 일렉트로니움 풀이 생성되었고, 게다가 크리스마스 이브인 24일까지 수수료가 0%라고 한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;일편단심 모네로! 메이저 알트코인 모네로!를 외치며 모네로만 채굴하던 내가 갑작스레 일렉트로니움을 채굴하게 된 계기는 얼마 전 모네로의 출금 수수료가 비싸져 자동환전용 채굴로 하거나 많은 양을 한번에 출금하라는 경고가 마이닝 풀 허브의 모네로 풀에 게재된 것도 있고 덩달아 급상승한 난이도로 인하여 수급이 눈에띄게 느려졌기 때문이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 380px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9983BE4E5A38991430&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9983BE4E5A38991430&quot; width=&quot;380&quot; height=&quot;56&quot; filename=&quot;ETN_MINING-1.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;준비물&quot;&gt;&lt;a name=&quot;준비물&quot; href=&quot;#준비물&quot;&gt;&lt;/a&gt;준비물&lt;/h2&gt;
&lt;p&gt;오늘의 준비물은 아래와 같다.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;- 기본 세팅조차 되어있지 않은 xmr-stak 또는 모네로를 채굴하기 위한 설정을 마친 xmr-stak의 사본
- 마이닝 풀 허브의 일렉트로니움 풀 주소, 포트번호
- 일렉트로니움을 채굴하기위한 일렉트로니움 풀 마이닝 이름.

※ 이전 글을 읽지 않았다면 읽고 오길 바랍니다.
http://oztheme.tistory.com/93
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&quot;왜-일렉트로니움을-채굴하는데-xmr-stak을-사용하는가?&quot;&gt;&lt;a name=&quot;왜-일렉트로니움을-채굴하는데-xmr-stak을-사용하는가?&quot; href=&quot;#왜-일렉트로니움을-채굴하는데-xmr-stak을-사용하는가?&quot;&gt;&lt;/a&gt;왜 일렉트로니움을 채굴하는데 xmr-stak을 사용하는가?&lt;/h2&gt;
&lt;p&gt;이름에도 xmr(모네로의 단축 코드)이 떡하니 들어가있는 모네로용 채굴기로 왜 일렉트로니움을 채굴하려고 하는 것인가?&lt;/p&gt;&lt;p&gt;정답부터 말하면 &lt;strong&gt;모네로와 일렉트로니움은 같은 알고리즘을 사용하기 때문&lt;/strong&gt;에 서로 채굴 프로그램이 호환된다. 이전 글에에서 잠깐 언급만 하고 넘어갔던 에이온(AEON)과도 같은 이유이다. 모네로를 채굴하기 위해 설정해놓은 설정값 그대로 마이닝 풀 주소와 마이너 이름만 변경하면 일렉트로니움을 채굴할 수 있다는 것이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;설정&quot;&gt;&lt;a name=&quot;설정&quot; href=&quot;#설정&quot;&gt;&lt;/a&gt;설정&lt;/h2&gt;
&lt;h3 id=&quot;초기설정을-거치지-않은-xmr-stak&quot;&gt;&lt;a name=&quot;초기설정을-거치지-않은-xmr-stak&quot; href=&quot;#초기설정을-거치지-않은-xmr-stak&quot;&gt;&lt;/a&gt;초기설정을 거치지 않은 xmr-stak&lt;/h3&gt;
&lt;p&gt;방법은 이전 글에서 사용했던 방법과 동일하다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9960CE4C5A38991431&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9960CE4C5A38991431&quot; width=&quot;820&quot; height=&quot;909&quot; filename=&quot;ETN_MINING-2.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;다만, 위의 설정에서 변경된 것이 있다면 마이닝 풀의 주소 (정확하게는 포트만),  마이너 이름 정도이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;마이닝 풀 허브의 일렉트로니움 풀 뉴스에서 포트번호를 확인할 수 있는데, 20596번으로 배정이 되어있다. 그러므로 전체 마이닝 풀의 주소는 asia.cryptonight-hub.miningpoolhub.com:20596이 된다. 마이너 이름은 일렉트로니움 풀에서 생성한 이름으로 입력하면 된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;모네로-채굴용-설정을-마친-xmr-stak&quot;&gt;&lt;a name=&quot;모네로-채굴용-설정을-마친-xmr-stak&quot; href=&quot;#모네로-채굴용-설정을-마친-xmr-stak&quot;&gt;&lt;/a&gt;모네로 채굴용 설정을 마친 xmr-stak&lt;/h3&gt;&lt;div&gt;모네로 채굴이 안정되는 때를 기다리며 정성스럽게 사본을 만들어 일렉트로니움 채굴용 설정을 할것이다.&lt;/div&gt;&lt;p&gt;초기설정을 마친 xmr-stak 실행파일 옆에 텍스트파일 세개가 생겨있을 것이다.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;- config.txt (프로그램 설정)
- cpu.txt (CPU 채굴 설정)
- amd.txt 또는 nvidia.txt (칩셋 제조사에 맞는 파일 생성, GPU 채굴 설정)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;여기서 필요한 것은 config.txt이다. 메모장을 통해 config.txt를 열면 아래와 같이 나온다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99905D3F5A3899141D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99905D3F5A3899141D&quot; width=&quot;820&quot; height=&quot;484&quot; filename=&quot;ETN_MINING-3.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;스크롤 내릴 필요 없이 수정을 위해 필요한 부분은 &lt;code&gt;&quot;pool_list&quot;&lt;/code&gt;뿐이다.  중괄호 &lt;code&gt;{ }&lt;/code&gt;로 싸여져있는 지점내의 &lt;code&gt;&quot;pool_address&quot;&lt;/code&gt;와 &lt;code&gt;&quot;wallet_address&quot;&lt;/code&gt;를 찾는다. &lt;code&gt;&quot;pool_address&quot;&lt;/code&gt;와 &lt;code&gt;&quot;wallet_address&quot;&lt;/code&gt;는 각각 마이닝 풀 주소, 마이닝 이름 (유저네임)이며 모네로를 채굴하기위해 설정해놓았던 값을 일렉트로니움을 채굴하기 위해 변경해주면 된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;변경 전&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 735px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9935533C5A38991437&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9935533C5A38991437&quot; width=&quot;735&quot; height=&quot;24&quot; filename=&quot;ETN_MINING-4.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;변경 후&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 773px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99CC7A475A3899142A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99CC7A475A3899142A&quot; width=&quot;773&quot; height=&quot;20&quot; filename=&quot;ETN_MINING-5.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;저장 후 실행하면 된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;마무리&quot;&gt;&lt;a name=&quot;마무리&quot; href=&quot;#마무리&quot;&gt;&lt;/a&gt;마무리&lt;/h2&gt;
&lt;p&gt;실행 후 5~10분정도 지난 뒤 마이닝 풀에서 자신의 채굴 프로그램이 무사히 잘 돌아가는지, 마이닝 풀로 전송되는 해시는 얼마나 되는 지 꼭 확인해보자!&lt;/p&gt;</description>
      <category>팁/Mining</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/94</guid>
      <comments>https://oztheme.tistory.com/94#entry94comment</comments>
      <pubDate>Tue, 19 Dec 2017 13:50:25 +0900</pubDate>
    </item>
    <item>
      <title>암호화폐 채굴하기 - 2. 채굴 프로그램 설치 및 기본 설정 (모네로, XMR)</title>
      <link>https://oztheme.tistory.com/93</link>
      <description>&lt;h1 id=&quot;채굴-프로그램-설치-및-기본-설정-(모네로,-xmr)&quot;&gt;&lt;a name=&quot;채굴-프로그램-설치-및-기본-설정-(모네로,-xmr)&quot; href=&quot;#채굴-프로그램-설치-및-기본-설정-(모네로,-xmr)&quot;&gt;&lt;/a&gt;채굴 프로그램 설치 및 기본 설정 (모네로, XMR)&lt;/h1&gt;
&lt;h3 id=&quot;이전-글-:-마이닝-풀-정하기-(http://oztheme.tistory.com/92)&quot;&gt;&lt;a name=&quot;이전-글-:-마이닝-풀-정하기-(http://oztheme.tistory.com/92)&quot; href=&quot;#이전-글-:-마이닝-풀-정하기-(http://oztheme.tistory.com/92)&quot;&gt;&lt;/a&gt;이전 글 : 마이닝 풀 정하기 (&lt;a href=&quot;http://oztheme.tistory.com/92&quot;&gt;http://oztheme.tistory.com/92&lt;/a&gt;)&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;※읽기 전에.

이 글은 암호화폐 모네로(XMR)에 관해 주관적인 생각이 포함되어있으며,
채굴은 AMD 라이젠 1700, 사파이어 라데온 RX460 니트로 4GB 그래픽카드(순정) 환경으로 만들어졌습니다.

개개인에 따라, 심지어는 같은 그래픽카드라도 해시파워는 다를 수 있으며,
모네로, 채굴로 인해 일어나는 모든 문제는 작성자가 책임지지 않습니다. 발열조심하세요^^
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;지난 글에서는 마이닝 풀을 정했다. 마이닝 풀에서 계정 생성도, 마이너 이름도 설정 했으니 이제 진짜 채굴을 시작해야할 시간이 온 것이다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이번 글에서는 모네로 (XMR)를 채굴해보려고 한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;모네로는 크립토나이트(CryptoNight)라는 독자 작업증명 알고리즘을 사용하며 현재 암호화폐계의 대장 비트코인에서 주로 쓰이는 ASIC 채굴기를 멀리하고 GPU와 더 친하며 더불어 CPU와도 친한 암호화폐이다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;하지만 결국 채굴을 하는 이유는 가격인데, 2017년 12월 18일 현재, 국내 거래소 빗썸 기준 37~41만원 사이에서 급상승, 급하강 없이 안정적이라 생각하여 선택했다. 내가 채굴중인 암호화폐가 급성장하면 더욱 좋겠지만 어디까지나 채굴은 장기적으로 생각해야하기 때문이니 말이다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;채굴을 위한 프로그램은  &lt;strong&gt;Claymore miner, xmr-stak, ccminer, sgminer&lt;/strong&gt; 등 다양하게 존재한다. 이들 채굴 프로그램들 중 일부는 마이닝 풀과 마찬가지로 1~2%의 수수료를 부과하며, 1%의 경우 1시간 (3600초) 중 36초 가량 동안 만들어진 해시를 프로그램 제작자의 암호화폐 지갑으로 보낸다. 그리고 대부분 소스가 공개된 오픈소스이므로 소스를 수정할 줄 알고, 수수료를 내기 싫은 채굴 입문자들은 직접 빌드해서 사용하면 된다. &lt;del&gt;물론 귀찮으면 필자처럼 수수료를 내면 된다.&lt;/del&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;del&gt;&lt;br /&gt;&lt;/del&gt;&lt;/p&gt;&lt;p&gt;위의 채굴 프로그램 중 내가 선택한 프로그램은 &lt;strong&gt;xmr-stak&lt;/strong&gt;이다. 시간당 2%의 수수료가 부과되지만 이 프로그램을 선택한 간단한 이유는 배치파일에 명령어를 써서 실행할 필요가 없어 초보자가 하기 좋고, 설정들은 텍스트 파일(.txt)로 저장되기 때문이다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;원래는 xmr-stak-amd, xmr-stak-nvidia, xmr-stak-cpu 이렇게 세가지의 프로젝트로 나누어져 있었지만 &lt;code&gt;The king is dead, long live the king!&lt;/code&gt;이란 문장을 남기고 세 프로젝트는 하나의 프로젝트 ‘xmr-stak’으로 통합되었다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;xmr-stak 프로젝트 : &lt;a href=&quot;https://github.com/fireice-uk/xmr-stak&quot;&gt;https://github.com/fireice-uk/xmr-stak&lt;/a&gt;&lt;/p&gt;&lt;p&gt;xmr-skak 다운로드 페이지 : &lt;a href=&quot;https://github.com/fireice-uk/xmr-stak/releases&quot;&gt;https://github.com/fireice-uk/xmr-stak/releases&lt;/a&gt;&lt;/p&gt;&lt;p&gt;바이러스 등의 위험을 방지하기 위해 꼭 프로젝트 페이지에서 다운로드!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/995D144D5A37E8C102&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F995D144D5A37E8C102&quot; width=&quot;820&quot; height=&quot;495&quot; filename=&quot;MINING-1.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Asset 아래에 있는 xmr-stak-win64.zip을 다운받고 적당한 위치에 압축을 풀어낸다. 참고로 32bit(x86) 전용 Windows 운영체제는 지원하지 않는다. 압축파일 안에 들어있는 파일은 총 5개. 그중 사용자가 직접 실행할 수 있는 파일은 &lt;code&gt;xmr-stak.exe&lt;/code&gt;하나뿐이므로 이를 실행한다. Claymore miner과 같이 초기설정부터 파라미터는 필요하지 않다. (파라미터 속성을 지정한 배치파일로도 실행 가능.)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;※주의
백신 프로그램이 채굴 프로그램을 바이러스 또는 컴퓨터가 해킹당하여 채굴프로그램을 실행한 것으로 오인할 수 있으므로,
백신을 잠시 비활성화하거나 예외설정을 하기 바랍니다.
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;xmr-stak을 실행하게 되면 초기 설정을 위해 여러가지를 물어볼 것이다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FC0B405A37E8C10A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FC0B405A37E8C10A&quot; width=&quot;820&quot; height=&quot;428&quot; filename=&quot;MINING-2.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;모네로를 채굴할 것인가 같은 CryptoNight 알고리즘을 사용하는 에이온을 채굴할것인가 입력하시오.&lt;/b&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-Currency: ‘monero’ or ‘aeon’&lt;/p&gt;&lt;p&gt;모네로를 채굴할 것이기 때문에 &lt;code&gt;monero&lt;/code&gt;를 입력하고 엔터를 누른다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;마이닝 풀의 주소를 입력하시오.&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-Pool address: e.g. pool.usxmrpool.com:3333&lt;/p&gt;&lt;p&gt;마이닝 풀 허브에서는 많은 암호화폐 채굴 풀을 운영하고있다. 그 중 모네로의 풀 주소는&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;아시아  :   asia.cryptonight-hub.miningpoolhub.com:20580&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;미국     :   us-east.cryptonight-hub.miningpoolhub.com:20580&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;유럽     :   europe.cryptonight-hub.miningpoolhub.com:20580&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;자신에게 가까운 주소를 선택하면 된다. 나는 한국에서 채굴을 시도하고있기 때문에 &lt;code&gt;asia.cryptonight-hub.miningpoolhub.com:20580&lt;/code&gt;를 입력하고 엔터를 누른다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;유저네임을 입력하시오.&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-Username (wallet address or pool login):&lt;/p&gt;&lt;p&gt;마이닝 풀 허브의 아이디와 모네로 풀에서 생성한 마이너 이름을 입력해야한다. 마이닝 풀 허브 아이디가 DesignOZ, 모네로 풀의 마이너 이름 OZMonero라면 &lt;code&gt;DesignOZ.OZMonero&lt;/code&gt;를 입력하고 엔터를 누른다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;비밀번호를 입력하시오.&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-Password(mostly empty or x):&lt;/p&gt;&lt;p&gt;보통은 비우거나 x를 입력한다. 그러나 되도록이면 마이너를 생성할 때의 비밀번호를 입력해준다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;기타 설정들&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-Does this pool port support TLS/SSL? Use no if unknown. (y/N)&lt;/p&gt;&lt;p&gt;-Do you want to use nicehash on this pool? (y/n)&lt;/p&gt;&lt;p&gt;-Do you want to use multiple pools? (y/n)&lt;/p&gt;&lt;p&gt;기본적인 설정만 할 것이기 때문에 모두 &lt;code&gt;n&lt;/code&gt;을 입력한다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;모든 입력을 마쳤다면 기본적인 설정, 실행은 완료되었다. 어떠한 문제가 발생하지 않는 한 채굴을 진행중이라는 뜻이며, 약 5분에서 10분 뒤면 마이닝 풀 허브 - 모네로 풀 - 대시보드에서 자신의 채굴 프로그램이 제대로 채굴중이며 제대로 풀로 전송을 하고있는지 확인을 할 수 있다. 물론 프로그램 실행 중 &lt;code&gt;h&lt;/code&gt;키를 눌러 자신의 해시파워가 얼마나 나오는지 확인할 수도 있다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;다음 글은 무얼 쓸지 고민중이다. xmr-stak 고급 설정 또는 AMD GPU의 튜닝방법에 대해 써내려갈 생각이다.&lt;/p&gt;</description>
      <category>팁/Mining</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/93</guid>
      <comments>https://oztheme.tistory.com/93#entry93comment</comments>
      <pubDate>Tue, 19 Dec 2017 01:16:47 +0900</pubDate>
    </item>
    <item>
      <title>암호화폐 채굴하기 - 1. 마이닝 풀 정하기</title>
      <link>https://oztheme.tistory.com/92</link>
      <description>&lt;h1 id=&quot;마이닝-풀-정하기&quot;&gt;&lt;a name=&quot;마이닝-풀-정하기&quot; href=&quot;#마이닝-풀-정하기&quot;&gt;&lt;/a&gt;마이닝 풀 정하기&lt;/h1&gt;
&lt;p&gt;암호화폐는 기본적으로 채굴하면 채굴할수록 난이도가 증가하는 특성을 가지고있다.따라서 해시파워가 높을수록 유리해지고, 나처럼 개인적으로1대에서 20대 이하의 채굴기를 운영하는 경우에는 하루에1개의 블록도 생산해내지 못할 가능성이 있다. 이는 시간이 지나면서 더욱 심해질 것이다. 이에 반하여 많은 사람들이 자신의 해시파워를 모아 채굴가능성을 높이기 위해 만들어 진 것이 마이닝 풀(Mining Pool)이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;마이닝 풀에서는 많은 사람들이 해시를 모으기 때문에 홀로 생산하는 것보다 매우 빠르게 암호화폐의 부분인 블록을발견할 수 있으며 이 블록을 발견하였을 때 자신이 생산해낸 해시가 차지하는 부분만큼의 배당금을 암호화폐로 지급한다. 이때 일정량 (약 1~2%)의 수수료가 공제된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;최근 비트코인과 알트코인의 가격이 비약적으로 상승됨에 따라 많은 사람들이 채굴에 뛰어들었고, 마이닝 풀 허브(Mining Pool Hub), 드워프 풀(Dwarf Pool), 수퍼노바 (suprnova)등 많은 마이닝풀이 생겨나게되었다. 여러 마이닝 풀을 비교해본 결과 안정적이고 해시파워가 높고, 비교적 수수료가 적은 마이닝 풀 허브를 선택하게 되었다. (마이닝풀 허브의 수수료는 0.9%)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Mining Pool Hub : &lt;a href=&quot;https://miningpoolhub.com&quot;&gt;https://miningpoolhub.com&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9970A8415A37C8CC17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9970A8415A37C8CC17&quot; width=&quot;820&quot; height=&quot;514&quot; filename=&quot;MPH-1.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;맨 처음 마이닝 풀 허브에 접속하게되면  왼쪽의 메뉴와 알아들을 수 없는 표가 있다.  (사진은 필자의 계정으로 로그인되어있음.)&amp;nbsp;&lt;span style=&quot;text-align: center;&quot;&gt;가운데 위치한 표는 각 암호화폐별 알고리즘, 포트, 정규화된 예상 수익, 총 해시 등을 나타낸다. 총 해시의 양만 보아도 자신의 해시파워에 비해 월등히 높은 것을 볼 수 있다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 686px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993C78395A37C8CC0F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993C78395A37C8CC0F&quot; width=&quot;686&quot; height=&quot;542&quot; filename=&quot;MPH-2.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;왼쪽의 메뉴에서 회원가입을 누르면 다음과 같은 상자가 나타난다. &lt;strong&gt;맨 아래의 PIN은 잃어버리면 찾기 귀찮기 때문에 꼭 기억하거나 메모를 해놓는다.&lt;/strong&gt;  가입이 완료되면 좌측의 풀 메뉴에서 자신이 채굴하고싶은 암호화폐로 들어간다. (필자는 여기서 Monero 선택)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991C1D455A37C8CC02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991C1D455A37C8CC02&quot; width=&quot;820&quot; height=&quot;452&quot; filename=&quot;MPH-3.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;마이닝 풀 허브의 모네로 풀 메인 페이지(뉴스)이다. 모네로 소개(링크), 출금, 서버설정 등의 정보가 제공되며 필요시 경고문도 함께 제공된다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/990A81495A37C8CD2A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F990A81495A37C8CD2A&quot; width=&quot;820&quot; height=&quot;534&quot; filename=&quot;MPH-4.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;마이닝 풀 허브와 같은 마이닝 풀에서 채굴을 하기 위해서는 아이디와 마이너 이름이 있어야한다. 아이디와 마이너 이름은 별개이기 때문에 아이디만 가지고있다고해서 끝나지는 않는다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;왼쪽의 암호화폐 풀 메뉴에서 마이너 메뉴를 누르면 위와 같은 페이지가 나온다. 마이너 이름과 암호를 입력하고 마이너 추가를 눌러준다. 암호는 잘 사용하지 않기 때문에 ‘x’라고 지정하는 경우도 많다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;여기까지 하였으면 기초적인 마이닝 풀 허브에서의 기본적인&amp;nbsp;작업은 마쳤다. 다음 글에서는 채굴 프로그램을 다운로드, 설정후 실행해보는 시간이 될 것이다.&lt;/p&gt;</description>
      <category>팁/Mining</category>
      <category>마이닝</category>
      <category>모네로</category>
      <category>암호화폐</category>
      <category>채굴</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/92</guid>
      <comments>https://oztheme.tistory.com/92#entry92comment</comments>
      <pubDate>Mon, 18 Dec 2017 22:57:44 +0900</pubDate>
    </item>
    <item>
      <title>[배틀그라운드] &amp;quot;S&amp;quot; stand for?</title>
      <link>https://oztheme.tistory.com/91</link>
      <description>&lt;iframe src=&quot;https://www.youtube.com/embed/xC4AX-GFiDc&quot; width=&quot;640&quot; height=&quot;360&quot; allow=&quot;encrypted-media&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h1&gt;&quot;S&quot; stands for?&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;오늘도 삼토바이를 타다가 폭사합니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;오즈씨는 삼토바이를 매우 싫어합니다.&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>작업물/편집</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/91</guid>
      <comments>https://oztheme.tistory.com/91#entry91comment</comments>
      <pubDate>Sun, 10 Dec 2017 16:36:59 +0900</pubDate>
    </item>
    <item>
      <title>[ADB] 네트워크 ADB를 사용해보자</title>
      <link>https://oztheme.tistory.com/90</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99CB97335A2CDE010C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99CB97335A2CDE010C&quot; width=&quot;810&quot; height=&quot;379&quot; filename=&quot;KakaoTalk_20171210_160817749.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;h1&gt;ADB over network&lt;/h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;LineageOS나 AOSP 기반 펌웨어(롬)을 적용한 단말기로 개발을 하다보면&amp;nbsp;간혹 보이는 이 기능은 같은 네트워크 (같은 공유기나 허브)내에 있는 단말기와 개발 호스트 (PC)를 USB 케이블이 아닌 네트워크로 연결해주는 기능을 하고있다. &lt;strike&gt;이름값 한다.&lt;/strike&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;사용 방법은 매우 간단하다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;단말기에서 ADB over network를 활성화하게되면 아래에 기기의 IP주소와 포트번호가 나온다.&lt;/p&gt;&lt;p&gt;(여기서 포트번호는 5555 고정이다)&lt;/p&gt;&lt;blockquote class=&quot;tx-quote-tistory&quot;&gt;&lt;p&gt;예) 192.168.0.17:5555&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;개발 호스트(PC)에서는 명령 프롬프트를 이용한다.&lt;/p&gt;&lt;p&gt;&amp;lt;ADB 경로&amp;gt;/adb connect &amp;lt;ip주소&amp;gt;:&amp;lt;포트번호&amp;gt;&lt;/p&gt;&lt;blockquote class=&quot;tx-quote-tistory&quot;&gt;&lt;p&gt;예) D:\Android\SDK\platform-tools\adb connect 192.168.0.17:5555&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Connect to ~라는 메시지가 나오면 완료.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;hr class=&quot;tx-hr-border-3&quot; style=&quot;display:block; border: black 0 none; border-top: black 1px dotted; height: 1px&quot;&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;개발해야할 기기가 여러가지인&amp;nbsp;경우 (폰, 태블릿 병행)&amp;nbsp;아래와 같이 배치파일을 만들어 사용할 수 있다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;ipTime 공유기 사용시&amp;gt;&lt;/p&gt;&lt;blockquote class=&quot;tx-quote-tistory&quot;&gt;&lt;p style=&quot;line-height: 1.5;&quot;&gt;set /p ip=IP를 입력하십시오 : 192.168.0.&lt;/p&gt;&lt;p style=&quot;line-height: 1.5;&quot;&gt;&amp;lt;ADB 경로&amp;gt; connect 192.168.0.%ip%:5555&lt;/p&gt;&lt;p style=&quot;line-height: 1.5;&quot;&gt;pause&lt;/p&gt;&lt;p style=&quot;line-height: 1.5;&quot;&gt;exit&lt;/p&gt;&lt;p style=&quot;line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;MiWIFI 샤오미 공유기 사용시&amp;gt;&lt;/p&gt;&lt;blockquote class=&quot;tx-quote-tistory&quot;&gt;&lt;p&gt;set /p ip=IP를 입력하십시오 : 192.168.31.&lt;/p&gt;&lt;p&gt;&amp;lt;ADB 경로&amp;gt; connect 192.168.31.%ip%:5555&lt;/p&gt;&lt;p&gt;pause&lt;/p&gt;&lt;p&gt;exit&lt;/p&gt;&lt;/blockquote&gt;</description>
      <category>개발/Android</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/90</guid>
      <comments>https://oztheme.tistory.com/90#entry90comment</comments>
      <pubDate>Sun, 10 Dec 2017 16:26:17 +0900</pubDate>
    </item>
    <item>
      <title>[방송용] [배틀그라운드] 승리, 치킨 소스</title>
      <link>https://oztheme.tistory.com/89</link>
      <description>&lt;h2&gt;[배틀그라운드] 승리, 치킨 소스&lt;/h2&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;배틀그라운드 방송중 승리횟수를 기록하기 쉽도록 만든 소스.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 79px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/995DC3335A2CD54C2F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F995DC3335A2CD54C2F&quot; width=&quot;79&quot; height=&quot;41&quot; filename=&quot;승리.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 79px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EA76335A2CD54C26&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EA76335A2CD54C26&quot; width=&quot;79&quot; height=&quot;41&quot; filename=&quot;치킨.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;사용한 폰트 : Noto Sans CJK Regular&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h1&gt;&lt;h3&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;b&gt;적용한 예&lt;/b&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/994376335A2CD88A05&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F994376335A2CD88A05&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;20171121210555_12.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;간격 : 1080p기준 (1920 x 1080) 기준 30px&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3&gt;&lt;span style=&quot;text-align: center;&quot;&gt;다운로드&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/996A9F335A2CE27433&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;Winner Winner Chicken Dinner.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>작업물/Source</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/89</guid>
      <comments>https://oztheme.tistory.com/89#entry89comment</comments>
      <pubDate>Sun, 10 Dec 2017 15:49:23 +0900</pubDate>
    </item>
    <item>
      <title>유출된 갤럭시 S7의 렌더링으로 이미지를 만들어보았다. PSD</title>
      <link>https://oztheme.tistory.com/88</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2141CC4B566A47742C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2141CC4B566A47742C&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;It's-not-Real-Galaxy-S7---Back.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/234C0F4B566A477425&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F234C0F4B566A477425&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;It's-not-Real-Galaxy-S7---Front.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h1 id=&quot;유출된-갤럭시-s7의-렌더링으로-이미지를-만들어보았다&quot;&gt;&lt;a name=&quot;유출된-갤럭시-s7의-렌더링으로-이미지를-만들어보았다&quot; href=&quot;#유출된-갤럭시-s7의-렌더링으로-이미지를-만들어보았다&quot;&gt;&lt;/a&gt;유출된 갤럭시 S7의 렌더링으로 이미지를 만들어보았다&lt;/h1&gt;
&lt;h2 id=&quot;galaxy-s7-flat-design-psd-from-leaked&quot;&gt;&lt;a name=&quot;galaxy-s7-flat-design-psd-from-leaked&quot; href=&quot;#galaxy-s7-flat-design-psd-from-leaked&quot;&gt;&lt;/a&gt;Galaxy S7 Flat Design PSD (leaked render base)&lt;/h2&gt;
&lt;p&gt;갤럭시 S7의 유출된 렌더링 이미지를 이용해 만들어보았습니다. 최대한 실제 사이즈에 맞추기위해 노력했습니다.&lt;/p&gt;&lt;p&gt;I made it with SGS7’s leaked render.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;크기 : 708 x 1434픽셀 (배경 포함 1080 x 1920픽셀)&lt;br /&gt;Size : 708 x 1434px (include background 1080 x 1920px)&lt;/p&gt;
&lt;h3 id=&quot;download&quot;&gt;&lt;a name=&quot;download&quot; href=&quot;#download&quot;&gt;&lt;/a&gt;Download&lt;/h3&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/23704847566A48860C&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;SGS7 Leaked Render Base.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>작업물/PSD</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/88</guid>
      <comments>https://oztheme.tistory.com/88#entry88comment</comments>
      <pubDate>Fri, 11 Dec 2015 12:52:50 +0900</pubDate>
    </item>
    <item>
      <title>구글 넥서스 6P PSD (Google Nexus 6P PSD)</title>
      <link>https://oztheme.tistory.com/87</link>
      <description>&lt;h1 id=&quot;google-nexus-6p-(15.12.11)&quot;&gt;&lt;a name=&quot;google-nexus-6p-(15.12.11)&quot; href=&quot;#google-nexus-6p-(15.12.11)&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center;&quot;&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;height: 800px;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/225D4E43566A14D50F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F225D4E43566A14D50F&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;N6P-Back.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;height: 800px;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215A0443566A14D512&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215A0443566A14D512&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;N6P-Front.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/h1&gt;&lt;h1 id=&quot;google-nexus-6p-(15.12.11)&quot;&gt;Google Nexus 6P (15.12.11)&lt;/h1&gt;
&lt;h2 id=&quot;구글-넥서스-6p-psd(google-nexus-6p-psd)&quot;&gt;&lt;a name=&quot;구글-넥서스-6p-psd(google-nexus-6p-psd)&quot; href=&quot;#구글-넥서스-6p-psd(google-nexus-6p-psd)&quot;&gt;&lt;/a&gt;구글 넥서스 6P PSD(Google Nexus 6P PSD)&lt;/h2&gt;
&lt;p&gt;크기 : 1593 x 778px (배경 포함 1080x1920px)&lt;br /&gt;Size : 1593 x 778px (include background 1080x1920px)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;넥서스 6P의 실제 크기를 참고하여 만들었습니다.&lt;/p&gt;&lt;p&gt;구글 머터리얼 팔레트 중, 그레이 색상을 이용하여 만들었습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I had made this, with reference Original GN6P and Google Material Palette (Gray color).&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;download&quot;&gt;&lt;a name=&quot;download&quot; href=&quot;#download&quot;&gt;&lt;/a&gt;Download&lt;/h3&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/271AC440566A151535&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;Nexus 6P.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>작업물/PSD</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/87</guid>
      <comments>https://oztheme.tistory.com/87#entry87comment</comments>
      <pubDate>Fri, 11 Dec 2015 09:14:03 +0900</pubDate>
    </item>
    <item>
      <title>구글 넥서스 5X PSD (Google Nexus 5X PSD)</title>
      <link>https://oztheme.tistory.com/86</link>
      <description>&lt;h1 id=&quot;nexus-5x-psd-(15.12.10)&quot;&gt;&lt;a name=&quot;nexus-5x-psd-(15.12.10)&quot; href=&quot;#nexus-5x-psd-(15.12.10)&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center;&quot;&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/242E4133566940AE2D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F242E4133566940AE2D&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;N5X-Front.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26238233566940B134&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26238233566940B134&quot; width=&quot;450&quot; height=&quot;800&quot; filename=&quot;N5X-Back.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/h1&gt;&lt;h1 id=&quot;nexus-5x-psd-(15.12.10)&quot;&gt;Nexus 5X PSD (15.12.10)&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;h2 id=&quot;구글-넥서스-5x-psd-(google-nexus-5x-psd)&quot;&gt;&lt;a name=&quot;구글-넥서스-5x-psd-(google-nexus-5x-psd)&quot; href=&quot;#구글-넥서스-5x-psd-(google-nexus-5x-psd)&quot;&gt;&lt;/a&gt;구글 넥서스 5X PSD (Google Nexus 5X PSD)&lt;/h2&gt;
&lt;p&gt;크기 : 1470 x 726px (배경 포함 1080x1920px)&lt;br /&gt;Size : 1470 x 726px (include background 1080x1920px)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;넥서스 5X의 실제 크기는 147.0 x 72.6mm이나 사용하기 쉽도록 밀리미터(mm) 단위 대신 픽셀(px)의 10배로 작업하였습니다.&lt;/p&gt;&lt;p&gt;구글 머터리얼 팔레트 중, 대부분 블루그레이 색상을 이용해 제작하였습니다.&lt;/p&gt;
&lt;p&gt;필자는 이걸 만들기위해 자신의 넥서스 5X에 자를 대고있었습니다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Real Google Nexus 5x’s Size is 147.0 x 72.6mm.&lt;br /&gt;but I changed size millimeter(mm) to pixel(px) and multiplied 10. for make it easy.&lt;/p&gt;
&lt;p&gt;I have to make this, take length on my Google Nexus 5X.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;download&quot;&gt;&lt;a name=&quot;download&quot; href=&quot;#download&quot;&gt;&lt;/a&gt;Download&lt;/h3&gt;&lt;div&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/22620A365669416826&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;Nexus 5x.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>작업물/PSD</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/86</guid>
      <comments>https://oztheme.tistory.com/86#entry86comment</comments>
      <pubDate>Thu, 10 Dec 2015 18:10:27 +0900</pubDate>
    </item>
    <item>
      <title>바이퍼 음장을 넥서스5X에 설치해보자 (Viper4android on Nexus 5X)</title>
      <link>https://oztheme.tistory.com/85</link>
      <description>&lt;h1 id=&quot;바이퍼-음장을-넥서스5에-설치해보자-(viper4android-on-nexus-5x!)&quot;&gt;&lt;a name=&quot;바이퍼-음장을-넥서스5에-설치해보자-(viper4android-on-nexus-5x!)&quot; href=&quot;#바이퍼-음장을-넥서스5에-설치해보자-(viper4android-on-nexus-5x!)&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 851px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2372F13C56599E293E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2372F13C56599E293E&quot; width=&quot;851&quot; height=&quot;315&quot; filename=&quot;va-official3[1].png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/h1&gt;&lt;h1 id=&quot;바이퍼-음장을-넥서스5에-설치해보자-(viper4android-on-nexus-5x!)&quot;&gt;&lt;/h1&gt;&lt;h1 id=&quot;바이퍼-음장을-넥서스5에-설치해보자-(viper4android-on-nexus-5x!)&quot;&gt;바이퍼 음장을 넥서스5에 설치해보자 (Viper4android on Nexus 5X!)&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;h2 id=&quot;경고-(disclaimer)&quot;&gt;&lt;a name=&quot;경고-(disclaimer)&quot; href=&quot;#경고-(disclaimer)&quot;&gt;&lt;/a&gt;경고 (Disclaimer)&lt;/h2&gt;
&lt;p&gt;이 패치를 설치함으로 발생하는 기기의 문제는 필자가 책임지지 않습니다. &lt;b&gt;이 패치파일은&amp;nbsp;테스트중입니다.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;백업을 생활화합시다.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I’m not responsible for anything that may happen to your N5X as a result of installing this v4a installer. you do so at your own risk and take the responsibility upon yourself.&amp;nbsp;&lt;b&gt;test in progress.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;설명-(about)&quot;&gt;&lt;a name=&quot;설명-(about)&quot; href=&quot;#설명-(about)&quot;&gt;&lt;/a&gt;설명 (About)&lt;/h2&gt;
&lt;p&gt;넥서스 5X에서 Viper4Android를 설치하기 쉽게 만들었습니다. 넥서스 5X를 위해 만들었지만 기기의 특성을 타는 설정이 없기 때문에 Android 5.1 롤리팝과, 6.0 마시멜로우 기반의 모든 롬에서 사용 가능할 것이라 생각됩니다. 테스트중입니다.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;V4A 설치&lt;/li&gt;&lt;li&gt;MusicFX 제거&lt;/li&gt;&lt;li&gt;Busybox 설치&lt;/li&gt;&lt;li&gt;/vendor/etc/audioeffects.conf 제거&lt;/li&gt;&lt;li&gt;&lt;code&gt;deepbuffer&lt;/code&gt; 영역이 제거된 audio_policy.conf로 변경&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;This file is to easily install Viper4Android for N5X.&lt;br /&gt;I made it for N5X, but I think it can to install on another LP, MM roms.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;install V4A (not priv-app)&lt;/li&gt;&lt;li&gt;remove MusicFX&lt;/li&gt;&lt;li&gt;install Busybox&lt;/li&gt;&lt;li&gt;remove /vendor/etc/audioeffects.conf&lt;/li&gt;&lt;li&gt;replace audio_policy.conf (remove deepbuffer)&lt;/li&gt;&lt;/ul&gt;
&lt;h2 id=&quot;설치-방법-(installation)&quot;&gt;&lt;br /&gt;&lt;/h2&gt;&lt;h2 id=&quot;설치-방법-(installation)&quot;&gt;&lt;a name=&quot;설치-방법-(installation)&quot; href=&quot;#설치-방법-(installation)&quot;&gt;&lt;/a&gt;설치 방법 (Installation)&lt;/h2&gt;
&lt;p&gt;TWRP 또는 CWM으로 플래싱합니다.&lt;/p&gt;&lt;p&gt;Flashing with TWRP or CWM.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;생성일자-(created)&quot;&gt;&lt;a name=&quot;생성일자-(created)&quot; href=&quot;#생성일자-(created)&quot;&gt;&lt;/a&gt;생성일자 (Created)&lt;/h2&gt;
&lt;p&gt;2015년 11월 28일&lt;/p&gt;&lt;p&gt;November 28, 2015&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;thanx-to&quot;&gt;&lt;a name=&quot;thanx-to&quot; href=&quot;#thanx-to&quot;&gt;&lt;/a&gt;Thanx to&lt;/h2&gt;&lt;div&gt;&lt;div&gt;zhuhang&lt;/div&gt;&lt;div&gt;arush@NAVER - first tester&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;h2 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드 (Download)&lt;/h2&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;h3 id=&quot;viper4android-for-n5x&quot;&gt;&lt;a name=&quot;viper4android-for-n5x&quot; href=&quot;#viper4android-for-n5x&quot;&gt;&lt;/a&gt;Viper4android for N5X&lt;/h3&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/2371E53756599D3B31&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;V4A_Install_N5X_Test.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <category>팁/Android</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/85</guid>
      <comments>https://oztheme.tistory.com/85#entry85comment</comments>
      <pubDate>Sat, 28 Nov 2015 21:29:45 +0900</pubDate>
    </item>
    <item>
      <title>[5X] CyanogenMod 13 (CM13) 나이틀리 배포</title>
      <link>https://oztheme.tistory.com/84</link>
      <description>&lt;h1 id=&quot;[5x]-cyanogenmod-13-(cm13)-나이틀리-배포&quot;&gt;&lt;a name=&quot;[5x]-cyanogenmod-13-(cm13)-나이틀리-배포&quot; href=&quot;#[5x]-cyanogenmod-13-(cm13)-나이틀리-배포&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/237ADF345655661C38&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F237ADF345655661C38&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h1 id=&quot;[5x]-cyanogenmod-13-(cm13)-나이틀리-배포&quot;&gt;[5X] CyanogenMod 13 (CM13) 나이틀리 배포&lt;/h1&gt;
&lt;p&gt;Google Nexus 5X의 CyanogenMod 13(CM13)의 나이틀리 버전이 배포되었습니다.&lt;/p&gt;&lt;p&gt;아직 초기버전이므로 미리 낸드로이드(Nandroid)백업을 진행하시기 바랍니다.&lt;/p&gt;&lt;p&gt;CyanogenMod Recovery는 아직 정상적인 사용이 불가능하므로 TWRP Recovery를 이용해주세요.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;체인지로그&quot;&gt;&lt;a name=&quot;체인지로그&quot; href=&quot;#체인지로그&quot;&gt;&lt;/a&gt;체인지로그&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;http://www.cmxlog.com/13/bullhead/&quot;&gt;http://www.cmxlog.com/13/bullhead/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드&lt;/h2&gt;
&lt;h3 id=&quot;rom&quot;&gt;&lt;a name=&quot;rom&quot; href=&quot;#rom&quot;&gt;&lt;/a&gt;ROM&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://download.cyanogenmod.org/?device=bullhead&quot;&gt;http://download.cyanogenmod.org/?device=bullhead&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&quot;recovery&quot;&gt;&lt;a name=&quot;recovery&quot; href=&quot;#recovery&quot;&gt;&lt;/a&gt;Recovery&lt;/h3&gt;
&lt;h4 id=&quot;--cyanogenmod-recovery&quot;&gt;&lt;a name=&quot;--cyanogenmod-recovery&quot; href=&quot;#--cyanogenmod-recovery&quot;&gt;&lt;/a&gt;- CyanogenMod Recovery&lt;/h4&gt;
&lt;p&gt;&lt;del&gt;사용불가&lt;/del&gt;&lt;/p&gt;
&lt;h4 id=&quot;--twrp-recovery&quot;&gt;&lt;a name=&quot;--twrp-recovery&quot; href=&quot;#--twrp-recovery&quot;&gt;&lt;/a&gt;- TWRP Recovery&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;https://dl.twrp.me/bullhead/&quot;&gt;https://dl.twrp.me/bullhead/&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&quot;gapps-(google-apps)&quot;&gt;&lt;a name=&quot;gapps-(google-apps)&quot; href=&quot;#gapps-(google-apps)&quot;&gt;&lt;/a&gt;GApps (Google Apps)&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://opengapps.org/&quot;&gt;http://opengapps.org/&lt;/a&gt;&lt;br /&gt;※ARM이 아닌 ARM64입니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;버그-목록&quot;&gt;&lt;a name=&quot;버그-목록&quot; href=&quot;#버그-목록&quot;&gt;&lt;/a&gt;버그 목록&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;설치 마법사 진행 도중 Nexus Imprint(지문인식)을 등록하기 위해 설정에 진입하면 팅기며 처음으로 돌아감. (설정 앱에서 설정가능함)&lt;/li&gt;&lt;li&gt;VOLTE 활성화가 되지 않았는지 U+에서 전화, SMS 수발신 안됨. MMS 발신은 가능. (KT 정상작동)&lt;/li&gt;&lt;li&gt;버튼 설정에서 Nexus 5X에 필요하지 않은 Home, Back, Menu, Search 버튼의 설정이 있음.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/84</guid>
      <comments>https://oztheme.tistory.com/84#entry84comment</comments>
      <pubDate>Wed, 25 Nov 2015 16:42:01 +0900</pubDate>
    </item>
    <item>
      <title>안드로이드 스튜디오 2.0 프리뷰 공개!</title>
      <link>https://oztheme.tistory.com/83</link>
      <description>&lt;em&gt;작성자 : &lt;a href=&quot;https://www.google.com/+JamalEason&quot;&gt;Jamal Eason&lt;/a&gt;, Product Manager, Android&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;br /&gt;&lt;/em&gt;
우리가 안드로이드 스튜디오에 대한 요청중 가장 많이 받은 것은 바로 애플리케이션 빌드 및 배포에 대한 속도였습니다. 오늘 있을 &lt;a href=&quot;https://androiddevsummit.withgoogle.com/&quot;&gt;안드로이드 개발자 회의&lt;/a&gt;에서 안드로이드 스튜디오 2.0의 미리보기를 공개할 예정입니다. 안드로이드 스튜디오 2.0에는 새로운 GPU 프로파일러의 프리뷰도 포함되어있습니다.&lt;br /&gt;
&lt;br /&gt;
이 모든 업데이트는 &lt;a href=&quot;http://tools.android.com/download/studio/canary&quot;&gt;카나리아 릴리즈 채널&lt;/a&gt;에서 업데이트가 가능하며 문제 발생시 피드백을 보낼 수 있습니다. 이번 릴리즈는 프리뷰이기 때문에 업데이트 되지 않은 복사본을 병렬적으로 실행할 수 있습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;iframe src=&quot;https://www.youtube.com/embed/oBV2U4w89_A&quot; width=&quot;560&quot; height=&quot;315&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;h3 id=&quot;새로운-기능&quot;&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=6052874519877499013#새로운-기능&quot; name=&quot;새로운-기능&quot;&gt;&lt;/a&gt;새로운 기능&lt;/h3&gt;
&lt;h4 id=&quot;빠른-실행:-빠른-빌드와-배포&quot;&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=6052874519877499013#빠른-실행:-빠른-빌드와-배포&quot; name=&quot;빠른-실행:-빠른-빌드와-배포&quot;&gt;&lt;/a&gt;빠른 실행: 빠른 빌드와 배포&lt;/h4&gt;
안드로이드 스튜디오의 즉시 실행 기능을 사용하면 변경사항을 기기 또는 에뮬레이터에서 빠르게 변경사항을 확인할 수 있습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;iframe src=&quot;https://www.youtube.com/embed/AefJXhCxrK8&quot; width=&quot;560&quot; height=&quot;315&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;br /&gt;
사용 방법은 간단합니다. 안드로이드 스튜디오 2.0으로 새로운 프로젝트를 만든다면 이미 설정되어있기 때문에 설정할 필요는 없습니다. 하지만 이미 생성된 프로젝트를 안드로이드 스튜디오 2.0에서 사용한다면 &lt;strong&gt;Settings/Preferences&lt;/strong&gt;메뉴에서 &lt;strong&gt;Build,Execution, Deplayment → Instant Run&lt;/strong&gt;순으로 진입하여 설정할 수 있습니다. 설정이 끝나면 프로젝트의 빠른 실행에 적합한 gradle 플러그인이 있는지 확인합니다.&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;img alt=&quot;Enable Instant Run for Android Studio projects&quot; src=&quot;http://2.bp.blogspot.com/-OhvluDDS-7A/Vk_O-bNyaLI/AAAAAAAACaE/yQ5rAISv5T8/s640/image03.png&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;em style=&quot;font-size:12pt; text-align: start;&quot;&gt;안드로이드 스튜디오의 프로젝트 설정에서 빠른 시행 기능 활성화&lt;/em&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;em&gt;&lt;br /&gt;&lt;/em&gt;
안드로이드 스튜디오에서 &lt;strong&gt;실행(Run)&lt;/strong&gt;버튼을 누르게 되면 일반적인 컴파일, 패키징 작업을 거쳐 장치 또는 에뮬레이터에 설치, 실행하게 됩니다. 실행중인 응용프로그램에 변경사항을 작성후 다시 &lt;strong&gt;실행&lt;/strong&gt;버튼을 누르게 되면 빠른 실행에 의해 애플리케이션에 바로 적용됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;img alt=&quot;New Run &amp;amp; Stop Actions in Android Studio for Instant Run&quot; src=&quot;http://2.bp.blogspot.com/-TqcYadXx1EI/Vk_Pk5BMwLI/AAAAAAAACaM/fSKpFNYmmbU/s640/image05.png&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;em style=&quot;font-size:12pt; text-align: start;&quot;&gt;빠른 실행을 위한 새로운 실행(Run), 중지(Stop) 액션&lt;/em&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
빠른 실행에 대한 자세한 설명은 &lt;a href=&quot;https://sites.google.com/a/android.com/tools/tech-docs/instant-run&quot;&gt;이곳&lt;/a&gt;에서 볼 수 있습니다.&lt;br /&gt;
&lt;h3 id=&quot;gpu-프로파일러&quot;&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=6052874519877499013#gpu-프로파일러&quot; name=&quot;gpu-프로파일러&quot;&gt;&lt;/a&gt;GPU 프로파일러&lt;/h3&gt;
안드로이드 스튜디오에서 OpenGL ES 안드로이드 코드 프로파일링이 GPU 프로파일러를 통해 더욱 쉬워졌습니다. GL의 상태와 명령들을 자세하게 파악할 수 있는 GPU 프로파일러는 빠른 프리뷰에 포함되있고 또한 매우 강력합니다. GL의 전체 세션을 기록하거나, GL Framebuffer와 텍스쳐를 OpenGL ES Code로 구동할 수 있습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://3.bp.blogspot.com/-jOCfDiBbMoY/Vk_QBFWad-I/AAAAAAAACaU/e_tpXhS6-WY/s640/image01.png&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;em style=&quot;font-size:12pt; text-align: start;&quot;&gt;안드로이드 스튜디오 GPU 프로파일러&lt;/em&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
이것을 사용하기 위해서는 안드로이드 스튜디오의 SDK Manager에서 &lt;strong&gt;GPU 디버깅 도구 패키지&lt;/strong&gt;를 다운로드해야합니다. GPU 프로파일러 도구와 안드로이드 앱 프로젝트를 프로파일링하기 위한 설정 방법은 &lt;a href=&quot;https://sites.google.com/a/android.com/tools/tech-docs/gpu-profiler&quot;&gt;이곳&lt;/a&gt;에서 볼 수 있습니다.&lt;br /&gt;
&lt;h3 id=&quot;whats-next&quot;&gt;
&lt;a href=&quot;https://www.blogger.com/blogger.g?blogID=6052874519877499013#whats-next&quot; name=&quot;whats-next&quot;&gt;&lt;/a&gt;Whats Next&lt;/h3&gt;
여기까지 안드로이드 스튜디오 2.0의 큰 업데이트 요소 중 일부를 보았습니다. 월요일, 화요일에 생중계되는 안드로이드 개발자 회의에서 더 자세하게 설명하고, 몇주에 걸쳐 안드로이드 스튜디오 2.0에서 더 많은 기능들을 활용하고 기존 버전과 달라진 점에 대한 설명을 할 것입니다.&lt;br /&gt;
&lt;br /&gt;
안드로이드에 대한 깊은 기술적 내용에 대한 관심이 있다면, 내일부터 16시간 이상 생중계될 안드로이드 개발자 회의에서 Codelabs를 통해 함께 해주십시오. 모든 내용들은 안드로이드 개발자 회의가 끝난 후 온라인으로 공개됩니다.&lt;br /&gt;
&lt;br /&gt;
안드로이드 스튜디오 2.0은 현재 카나리아 릴리즈 채널에 공개되어있으며, 구글 플러스(Google+)에 있는 안드로이드 스튜디오 개발팅에게 새로운 기능들에 대한 의견을 남길 수 있습니다.</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/83</guid>
      <comments>https://oztheme.tistory.com/83#entry83comment</comments>
      <pubDate>Tue, 24 Nov 2015 20:27:41 +0900</pubDate>
    </item>
    <item>
      <title>[리뷰] 구글 넥서스 5X (Google Nexus 5X)</title>
      <link>https://oztheme.tistory.com/82</link>
      <description>&lt;h1 id=&quot;nexus-5x-간단-사용기&quot;&gt;&lt;a name=&quot;nexus-5x-간단-사용기&quot; href=&quot;#nexus-5x-간단-사용기&quot;&gt;&lt;/a&gt;[리뷰] 구글 넥서스 5X (Google Nexus 5X)&lt;/h1&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;3년간 LG Optimus G Pro를 엄청나게 사용했다. 하우징도 갈아보고 액정도 자가수리를 해보았다. 삼성이나 LG 순정 펌웨어는 몹시 싫어해서 항상 CM이나 AOSP 기반 롬을 올려 사용했었다. 지금은 수리한 액정 마저도 파손되고 CM13은 이번 크리스마스에 공개된다고 하고, 3년간 줄기차게 쓴 배터리가 이제 흐물흐물 배터리가 녹는게 보인다. 애지중지 사용하던 G Pro를 이제는 보내줄 때가 되었다고 생각했고, 마침 눈에 보이던 Nexus 5X를 지르게 되었다. 넥서스는 진리니까.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;새로워진-nexus&quot;&gt;&lt;a name=&quot;새로워진-nexus&quot; href=&quot;#새로워진-nexus&quot;&gt;&lt;/a&gt;새로워진 NEXUS&lt;/h2&gt;
&lt;p&gt;사실 필자는 이전에 넥서스 기종을 사용해본 적이 있다. 다름 아닌 Nexus S.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 593px; width: 593px; height: 500px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/276E493D5653E3890B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F276E493D5653E3890B&quot; width=&quot;593&quot; height=&quot;500&quot; filename=&quot;Samsung-Google-Nexus-S-I9023-962.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 593px; height: 500px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;지금은 기본 듀얼코어에 1GB 램을 가지고 출시되는 저가형에도 속하기 힘든 녀석이지만 G Pro로 갈아타기 전까지 아주 재밌게 가지고 놀았다. 삼성 허밍버드가 잘 나오긴 했나보다. 내가 G Pro로 갈아타고나서 스마트폰을 사용하고 싶으셨던 어머니께서 탐내시기도 했다. (지금은 Nexus S와 LG Optimus G를 거쳐 LG G3 Cat.6로 갈아타셨다.)&lt;/p&gt;&lt;p&gt;처음 내가 Nexus 5X를 오프라인에서 구하기 위해 필자가 살고있는 지역을 샅샅이 뒤졌다. 안가본 대리점이 몇 군데 없을 정도로 찾아다녔다. 역시 넥서스. 귀한 만큼 구하기도 힘든가보다. 그러다 결국 구했다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 889px; width: 889px; height: 500px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2534753F5653E3A617&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2534753F5653E3A617&quot; width=&quot;889&quot; height=&quot;500&quot; filename=&quot;Nexus_5X.0.0[1].jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 889px; height: 500px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;필자가 산 Nexus 5X는 위의 사진에 보이는 쿼츠(화이트) 색상이다. 기기를 보자마자 처음 보는 생각은 딱 하나뿐이었다.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;영롱하군요 - 타릭(리그 오브 레전드)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;디자인은 넥서스답게 굉장히 깔끔했으며, 뒷면의 카툭튀는 멋스럽게 만들어놓았다.&lt;br /&gt;사실 필자는 카툭튀에서 반했을지도 모른다.&lt;/p&gt;&lt;p&gt;스펙은 Nexus 5(2013)에 비해서 크게 차이나지 않는 듯 하다. 심지어 메모리까지 동일하다. &lt;del&gt;그놈의 여명808&lt;/del&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th style=&quot;text-align:left&quot;&gt;Nexus 5 (2013)&lt;/th&gt;
&lt;th style=&quot;text-align:left&quot;&gt;Nexus 5X (2015)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;SoC&lt;/td&gt;
&lt;td style=&quot;text-align:left&quot;&gt;Qualcomm Snapdragon 800&lt;/td&gt;
&lt;td style=&quot;text-align:left&quot;&gt;Qualcomm Snapdragon 808&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RAM&lt;/td&gt;
&lt;td style=&quot;text-align:left&quot;&gt;DDR3 2GB&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;물론 Krait 400 쿼드와 A57 듀얼 + A53 쿼드 big.LITTLE↑ HMP모드의 조합에서 차이가 좀 나긴 한다. 일반적으로 사용할 때에는 2000CC에서 3000CC로 엔진을 바꾼 정도의 차이가 느껴진다. 결코 적지 않은 차이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;새로운-기능과-장점&quot;&gt;&lt;a name=&quot;새로운-기능과-장점&quot; href=&quot;#새로운-기능과-장점&quot;&gt;&lt;/a&gt;새로운 기능과 장점&lt;/h2&gt;
&lt;h3 id=&quot;nexus-imprint&quot;&gt;&lt;a name=&quot;nexus-imprint&quot; href=&quot;#nexus-imprint&quot;&gt;&lt;/a&gt;Nexus Imprint&lt;/h3&gt;
&lt;p&gt;Nexus 5X와 동시 공개된 Nexus 6P에서 맨 처음 눈여겨본 점은 바로 지문인식이다.&lt;/p&gt;&lt;p&gt;최근 개인정보 보안에 신경을 많이 쓰게된 필자가 가장 만족하고 있는 기능들 중 하나이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215C71455653E3B104&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215C71455653E3B104&quot; width=&quot;640&quot; height=&quot;360&quot; filename=&quot;nexus5xfingerprintsensor.0 (1).gif&quot; filemime=&quot;image/gif&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Nexus Imprint&lt;/strong&gt;라고 이름이 붙은 이 지문인식 센서는 갤럭시 S6, 아이폰 6,6S와 같은 에어리어 지문인식 방식이며, 인식 속도는 매우 빠르다.&lt;/p&gt;&lt;p&gt;개인적인 경험상 여러 기종과 비교했을 때의 지문인식 속도는 다음과 같다.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;아이폰 6S &amp;gt;= 넥서스 5X &amp;gt; 아이폰 6 &amp;gt; 갤럭시 S6&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;ambient-display&quot;&gt;&lt;a name=&quot;ambient-display&quot; href=&quot;#ambient-display&quot;&gt;&lt;/a&gt;Ambient Display&lt;/h3&gt;
&lt;p&gt;그 다음은 &lt;strong&gt;Ambient Display&lt;/strong&gt;이다. 모토로라 Moto X의 Active Display를 본 적 있는 사람이라면 이해하기 쉬울 것이다.&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 510px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/221C663D5653E38711&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F221C663D5653E38711&quot; width=&quot;510&quot; height=&quot;440&quot; filename=&quot;3-moto-x-active-display.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;모토로라의 Active Display는 화면이 꺼진 상태에서 기기를 들었을 때 위 사진과 같이 간략한 알림과 시간을 흑백으로 알려주는 기능이다. Nexus 5X의 Ambient Display도 이와 유사한 기능을 가지고 있다.&lt;/p&gt;&lt;p&gt;예전 모토로라의 Active Display를 처음 보았을 때 감탄사를 연발했던 기억이 있다. 그래서 G Pro에도 앱을 설치하여 한동안 사용했지만 오리지널이 아니라 그런지 감흥은 오래가지 않았다. 하지만 Nexus 5X의 Ambient Display를 굉장히 만족스럽다.&lt;/p&gt;
&lt;h3 id=&quot;뛰어난-카메라&quot;&gt;&lt;a name=&quot;뛰어난-카메라&quot; href=&quot;#뛰어난-카메라&quot;&gt;&lt;/a&gt;뛰어난 카메라&lt;/h3&gt;
&lt;p&gt;기존 Nexus 5의 800만 화소의 카메라에서 소니 엑스모어 IMX377 센서와 1,230만 화소의 카메라를 통해 보다 선명한 화질의 사진을 찍을 수 있게 되었다. 매우 커진 센서 덕분에 저조도에서도 잘 나온다는 평이 다수다.&lt;/p&gt;&lt;p&gt;그리고 G3부터 나온 LG의 LASER AF가 탑재되어 초점을 매우 빠르게 잡을 수 있다.&lt;/p&gt;&lt;p&gt;Nexus 5X로 찍은 사진들은 공식 홈페이지(&lt;a href=&quot;https://www.google.com/nexus/5x/)에서&quot;&gt;https://www.google.com/nexus/5x/)에서&lt;/a&gt; 볼 수 있다.&lt;/p&gt;
&lt;h3 id=&quot;고속충전-기능&quot;&gt;&lt;a name=&quot;고속충전-기능&quot; href=&quot;#고속충전-기능&quot;&gt;&lt;/a&gt;고속충전 기능&lt;/h3&gt;
&lt;p&gt;퀄컴의 Quick Charge가 아닌 자체적인 &lt;strong&gt;Fast Charge&lt;/strong&gt;를 지원한다. 기본적으로 LG전자의 5V 3.0A 충전기를 제공하는데, 빠른 충전속도를 보여주고있다.&lt;br /&gt;필자의 경우 폰을 자주 사용하기 때문에 배터리의 소모가 빠른 편이나 고속충전 중에는 사용중임에도 불구하고 빠르게 충전되고 있는것이 눈에 보일 정도이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;하지만&quot;&gt;&lt;a name=&quot;하지만&quot; href=&quot;#하지만&quot;&gt;&lt;/a&gt;하지만&lt;/h2&gt;
&lt;h3 id=&quot;qualcomm-snapdragon-808&quot;&gt;&lt;a name=&quot;qualcomm-snapdragon-808&quot; href=&quot;#qualcomm-snapdragon-808&quot;&gt;&lt;/a&gt;Qualcomm Snapdragon 808&lt;/h3&gt;
&lt;p&gt;모든 사람들이 아쉬워하고있는 부분이다. 퀄컴사의 스냅드래곤 808 프로세서는 A57 듀얼과 A53 쿼드로 구성된 big.LITTLE 아키텍처의 HMP모드로 돌아가는 프로세서이다.&lt;/p&gt;&lt;p&gt;화룡이라는 이명이 붙어버린 스냅드래곤 810에 비하면 발열은 줄어들었지만, 그 스냅드래곤 810의 빅 코어인 A57 쿼드에서 2개의 코어를 빼버리고 출시한 프로세서가 스냅드래곤 808이기 때문에 발열과 함께 성능도 줄어들었다. 프로세서 자체 능력은 64bit 지원된다는 것을 빼면 스냅드래곤 805와 큰 차이가 없다고 한다.&lt;/p&gt;&lt;p&gt;게다가 DDR4 메모리를 지원하는 810과 다르게 808은 DDR3까지만 지원하기 때문에 넥서스 5와 성능 차이가 거의 없는데 한몫했을 것이다.&lt;/p&gt;
&lt;h3 id=&quot;usb-type-c&quot;&gt;&lt;a name=&quot;usb-type-c&quot; href=&quot;#usb-type-c&quot;&gt;&lt;/a&gt;USB Type-C&lt;/h3&gt;
&lt;p&gt;사실 이건 단점이라 하기 애매하다. 단점이라고 뽑은 이유가 USB Type-C 충전기나 케이블과 같은 악세서리가 아직까지는 매우 적다는 것인데 이것은 스마트폰 시장에서 USB Type-C를 채용한 기기가 많아짐에 따라 달라질 것이다.&lt;/p&gt;&lt;p&gt;그리고 LG에서 기본 제공되는 충전기는 &lt;strong&gt;앞 뒤가 모두 USB Type-C인 케이블을 제공&lt;/strong&gt;하기 때문에 일반적인 USB Type-A 포트를 쓰는 PC에 연결하기 힘들다.&lt;/p&gt;&lt;p&gt;필자도 결국은 젠더와 케이블을 잔뜩 구매했다.&lt;/p&gt;
&lt;h3 id=&quot;고속충전중-터치-밀림-문제&quot;&gt;&lt;a name=&quot;고속충전중-터치-밀림-문제&quot; href=&quot;#고속충전중-터치-밀림-문제&quot;&gt;&lt;/a&gt;고속충전중 터치 밀림 문제&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;고속충전중 터치가 밀린다는 문제&lt;/strong&gt;가 있다. 2015년 10월 생산까지 생산된 Nexus 5X에서만 나타나는 현상이라고 구글에서는 말하고있다.&lt;/p&gt;&lt;p&gt;필자도 그런 문제가 있어 교품을 받아야할 것 같다. 사실 이건 리콜감일지도 모르겠다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;총평&quot;&gt;&lt;a name=&quot;총평&quot; href=&quot;#총평&quot;&gt;&lt;/a&gt;총평&lt;/h2&gt;
&lt;p&gt;디자인은 말했다시피 굉장히 &lt;strong&gt;영롱하고 아름다웠다.&lt;/strong&gt; 내가 언제 다시 이런 기기를 만나볼 수 있을까라는 생각이 들어 바로 샀을 지경이니 말 다했다.&lt;/p&gt;&lt;p&gt;스펙은 최신 스마트폰에 비하여 아쉬운 면도 있지만 불만은 없다. 워낙 스냅드래곤 600인 G Pro를 열심히 사용한 터라 스냅드래곤 800만 줘도 기뻐하며 썼을 필자이기 때문에 불만없이 잘 사용하고있다.&lt;/p&gt;&lt;p&gt;카메라는 사용을 잘 안하는 편이라 테스트를 못해봤다. 하지만 셀피를 좋아하는 필자에겐 대만족이다. 조금 있으면 모공까지 보일 듯해서 피부에 조금 신경을 써야겠다는 걱정도 동시에 생겼다.&lt;/p&gt;&lt;p&gt;한번 기기를 사면 굉장히 오래쓰는 필자이기 때문에 한번의 선택은 적어도 2~3년을 간다. 그 시간동안 만족 또는 후회를 안고 가야하기 때문에 신중 또 신중히 생각했다. 하지만 넥서스 5X를 만나면서 이러한 고민들은 싹 날아갔다. &lt;strong&gt;넥서스는 진리&lt;/strong&gt;라는 것을 다시 한번 되새길 수 있는 좋은 시간이었다. 끝!&lt;/p&gt;</description>
      <category>소식</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/82</guid>
      <comments>https://oztheme.tistory.com/82#entry82comment</comments>
      <pubDate>Tue, 24 Nov 2015 13:22:11 +0900</pubDate>
    </item>
    <item>
      <title>[Nexus 5X] [Mod] 서라운드 사운드(Surround Sound)</title>
      <link>https://oztheme.tistory.com/81</link>
      <description>&lt;h1 id=&quot;[mod]-서라운드-사운드(surround-sound)&quot;&gt;&lt;a name=&quot;[mod]-서라운드-사운드(surround-sound)&quot; href=&quot;#[mod]-서라운드-사운드(surround-sound)&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24683D495651B07B25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24683D495651B07B25&quot; width=&quot;900&quot; height=&quot;470&quot; filename=&quot;nexus-5x-pic.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/h1&gt;&lt;h1 id=&quot;[mod]-서라운드-사운드(surround-sound)&quot;&gt;[Mod] 서라운드 사운드(Surround Sound)&lt;/h1&gt;
&lt;p&gt;&lt;b&gt;이 글은 원 제작자 sshafranko@XDA의 허가를 받아 작성하였습니다.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;원문 : &lt;a href=&quot;http://forum.xda-developers.com/nexus-5x/themes-apps/mod-surround-sound-testers-t3252659&quot;&gt;http://forum.xda-developers.com/nexus-5x/themes-apps/mod-surround-sound-testers-t3252659&lt;/a&gt;&lt;/p&gt;&lt;p&gt;제작자 : sshafranko@XDA (&lt;a href=&quot;http://forum.xda-developers.com/member.php?u=5108383&quot;&gt;http://forum.xda-developers.com/member.php?u=5108383&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;개요&quot;&gt;&lt;a name=&quot;개요&quot; href=&quot;#개요&quot;&gt;&lt;/a&gt;개요&lt;/h2&gt;
&lt;p&gt;이 모드는 핸드셋 스피커 (수화 스피커)를 음악을 듣거나, 비디오를 보거나, 벨이 울릴 때 메인 스피커와 함께 작동하도록 하는 패치입니다. 실제 서라운드와 같지는 않지만 그럼에도 좋은 소리를 내게 합니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;경고&quot;&gt;&lt;a name=&quot;경고&quot; href=&quot;#경고&quot;&gt;&lt;/a&gt;경고&lt;/h2&gt;
&lt;p&gt;이 모드는 제작자와 테스터, 그리고 필자에 의해 테스트되었습니다만, 이 모드에 의한 파일, 시스템의 손상과 하드브릭(벽돌)에 관하여 제작자(sshafranko@XDA)와 필자는 책임을 지지 않습니다.&lt;/p&gt;&lt;p&gt;백업을 생활화합시다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;설치-방법&quot;&gt;&lt;a name=&quot;설치-방법&quot; href=&quot;#설치-방법&quot;&gt;&lt;/a&gt;설치 방법&lt;/h2&gt;
&lt;p&gt;설치 방법은 두가지로,&lt;/p&gt;&lt;p&gt;첨부된 zip파일 그대로 커스텀 리커버리에서 플래싱하는 방법과&lt;br /&gt;파일에 내재되어있는 Mod파일들을 /system/etc폴더에 풀고 rw r r (644) 퍼미션을 주는 방법이 있습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;credits&quot;&gt;&lt;a name=&quot;credits&quot; href=&quot;#credits&quot;&gt;&lt;/a&gt;CREDITS&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Dwitherell _ 이 모드의 플래싱 가능한 zip파일을 생성.&lt;/li&gt;&lt;li&gt;Stu5797 _ 5x에서 추출한 파일 제공, Mod 테스터로 활동.&lt;/li&gt;&lt;li&gt;IDKsomuch _ 스레드 시작할 때 많은 관심을 가져주어 감사합니다.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;컨트리뷰터&quot;&gt;&lt;a name=&quot;컨트리뷰터&quot; href=&quot;#컨트리뷰터&quot;&gt;&lt;/a&gt;컨트리뷰터&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;SShafranko&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;생성-일자&quot;&gt;&lt;a name=&quot;생성-일자&quot; href=&quot;#생성-일자&quot;&gt;&lt;/a&gt;생성 일자&lt;/h2&gt;
&lt;p&gt;2015년 11월 18일&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드&lt;/h2&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;서라운드-사운드-[surround-sound]&quot;&gt;&lt;a name=&quot;서라운드-사운드-[surround-sound]&quot; href=&quot;#서라운드-사운드-[surround-sound]&quot;&gt;&lt;/a&gt;서라운드 사운드 [SURROUND SOUND]&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mediafire.com/download/8kwy3dp3h24u4zk/Nexus_5x_Surround.zip&quot;&gt;http://www.mediafire.com/download/8kwy3dp3h24u4zk/Nexus_5x_Surround.zip&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;핸드셋-스피커-음량-증가-[upper-(handset)-speaker-loud]&quot;&gt;&lt;a name=&quot;핸드셋-스피커-음량-증가-[upper-(handset)-speaker-loud]&quot; href=&quot;#핸드셋-스피커-음량-증가-[upper-(handset)-speaker-loud]&quot;&gt;&lt;/a&gt;핸드셋 스피커 음량 증가 [UPPER (Handset) SPEAKER LOUD]&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mediafire.com/download/ve0wlo99ybx4g14/Nexus_5x_Surround_%2B1Loud.zip&quot;&gt;http://www.mediafire.com/download/ve0wlo99ybx4g14/Nexus_5x_Surround_%2B1Loud.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;기본-값으로-되돌리기-[return-to-stock]&quot;&gt;&lt;a name=&quot;기본-값으로-되돌리기-[return-to-stock]&quot; href=&quot;#기본-값으로-되돌리기-[return-to-stock]&quot;&gt;&lt;/a&gt;기본 값으로 되돌리기 [RETURN TO STOCK]&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mediafire.com/download/uhb8r8spz8surmo/Nexus_5x_ReverttoStock.zip&quot;&gt;http://www.mediafire.com/download/uhb8r8spz8surmo/Nexus_5x_ReverttoStock.zip&lt;/a&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/81</guid>
      <comments>https://oztheme.tistory.com/81#entry81comment</comments>
      <pubDate>Sun, 22 Nov 2015 21:09:50 +0900</pubDate>
    </item>
    <item>
      <title>[G Pro] WildKernel Build #5 Reloaded 2</title>
      <link>https://oztheme.tistory.com/80</link>
      <description>&lt;h1 id=&quot;wildkernel-build-#5-reloaded-2&quot;&gt;&lt;a name=&quot;wildkernel-build-#5-reloaded-2&quot; href=&quot;#wildkernel-build-#5-reloaded-2&quot;&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Wild&lt;/span&gt;Kernel build #5 Reloaded 2&lt;/h1&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;원문 : &lt;a href=&quot;http://forum.xda-developers.com/optimus-g-pro/orig-development/kernel-wildkernel-build-1-featurlicous-t3069629&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://forum.xda-developers.com/optimus-g-pro/orig-development/kernel-wildkernel-build-1-featurlicous-t3069629&quot;&gt;http://forum.xda-developers.com/optimus-g-pro/orig-development/kernel-wildkernel-build-1-featurlicous-t3069629&lt;/a&gt;&lt;/p&gt;&lt;p&gt;제작자 : Emmanuel U@XDA (&lt;a href=&quot;http://forum.xda-developers.com/member.php?u=4193353&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://forum.xda-developers.com/member.php?u=4193353&quot;&gt;http://forum.xda-developers.com/member.php?u=4193353&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;커널 소스 : &lt;a href=&quot;https://github.com/EmmanuelU/wild_kernel_lge_gproj/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://github.com/EmmanuelU/wild_kernel_lge_gproj/&quot;&gt;https://github.com/EmmanuelU/wild_kernel_lge_gproj/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;주의&quot;&gt;&lt;a name=&quot;주의&quot; href=&quot;#주의&quot;&gt;&lt;/a&gt;주의&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;이 커널에 의한 파일, 시스템의 손상과 하드브릭(벽돌)에 관하여 제작자(Emmanuel U@XDA)와 필자는 책임을 지지 않습니다. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;백업을 생활화합시다.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;chagelog-(변경사항)&quot;&gt;&lt;a name=&quot;chagelog-(변경사항)&quot; href=&quot;#chagelog-(변경사항)&quot;&gt;&lt;/a&gt;Chagelog (변경사항)&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Build #5 (15년 9월 23일)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Mpdecision 재승인(권장), intelliplug는 여전히 기본적으로 사용되어있지 않음&lt;/li&gt;&lt;li&gt;커스텀된 HBLN의 패턴을 지원&lt;/li&gt;&lt;li&gt;CM 업스트림 업데이트&lt;/li&gt;&lt;li&gt;Misc 메모리 패치&lt;/li&gt;&lt;li&gt;Interactive 가버너 업스트림&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;Build #5 Reloaded 1 (10월 28일)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Blackout (화면이 검은색으로 변하는 현상)이 발생함에 따라 CyanogenMod의 색상 조절 코드를 되돌림. 여전히 mdp에서 문제가 발생할 것이나 Blackout현상은 방지할 수 있다&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;Build #5 Reloaded 2 (11월 7일)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;F240x(국내) 모델에 대한 Blackout 패치&lt;/strong&gt;&lt;br /&gt;지난번에 업데이트가 적용되지 않았다고함&lt;/li&gt;&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;설치방법&quot;&gt;&lt;a name=&quot;설치방법&quot; href=&quot;#설치방법&quot;&gt;&lt;/a&gt;설치방법&lt;/h2&gt;
&lt;p&gt;CWM, Philz 또는 TWRP로 플래싱.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드&lt;/h2&gt;
&lt;p&gt;원문 참조&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/80</guid>
      <comments>https://oztheme.tistory.com/80#entry80comment</comments>
      <pubDate>Mon, 9 Nov 2015 10:18:10 +0900</pubDate>
    </item>
    <item>
      <title>CyanogenMod 12.1 10월 28일자 체인지로그 (한글)</title>
      <link>https://oztheme.tistory.com/79</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2419D03B563069381B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2419D03B563069381B&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/28/15 (Wed)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;HighTouchSensitivity [1/2]: Add Settings preference (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;HighTouchSensitivity [2/2]: Add Settings preference (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;Add getPreferredApn() in buildWaitingApns() (android_frameworks_opt_telephony)&lt;/p&gt;&lt;p&gt;Fix empty field creation for data kinds without type. (android_packages_apps_Contacts)&lt;/p&gt;&lt;p&gt;settings: ensure we don't call isProtectedApp with an invalid reference (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;SystemUI: update keyguard state when profiles disable keyguard (android_frameworks_base)&lt;/p&gt;&lt;p&gt;perf: Add support for additional power profiles (android_frameworks_base)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 28일 (수)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;HighTouchSensitivity [1/2]: 설정 속성 추가 (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;HighTouchSensitivity [2/2]:&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;설정 속성 추가 (android_packages_apps_Settings)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;buildWaitingApns()에 getPreferredApn() 추가 (APN) (android_frameworks_opt_telephony)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;자료 속성에 없는 빈 영역 해결 (android_packages_apps_Contacts)&lt;/p&gt;&lt;p&gt;settings: isProtectdApp 호출하지 않음 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;SystemUI: 프로필의 keyguard 비활성시 keyguard 상태 업데이트 (anroid_frameworks_base)&lt;/p&gt;&lt;p&gt;perf: 추가적 전원 프로필 지원 추가 (android_frameworks_base)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/79</guid>
      <comments>https://oztheme.tistory.com/79#entry79comment</comments>
      <pubDate>Wed, 28 Oct 2015 15:26:05 +0900</pubDate>
    </item>
    <item>
      <title>CyanogenMod 12.1 10월 27일자 체인지로그 (한글)</title>
      <link>https://oztheme.tistory.com/77</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25413F3C562EEF682F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25413F3C562EEF682F&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/27/15 (Tue)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;CMSettingsProvider: Add ability to read region locked themes (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;Revert &quot;autobrightness: Fix the brightness dialog is not work when first enable auto-backlight&quot; (android_frameworks_base)&lt;/p&gt;&lt;p&gt;trebuchet: ensure not overlaping shorcuts and drop items when searchbar is invisible (android_packages_apps_Trebuchet)&lt;/p&gt;&lt;p&gt;base: don't show reboot options for safe mode (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Fix live lock screen previews not showing up (android_packages_providers_ThemesProvider)&lt;/p&gt;&lt;p&gt;WirelessSettings: Remove NFC category if there's no NFC adapter (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;email: junk icon (android_packages_apps_Email)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 27일 (화)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;CMSettingsProvider: 잠긴 테마에&amp;nbsp;지역 속성 읽을 수 있는 기능&amp;nbsp;추가&amp;nbsp;(cm_platform_sdk)&lt;/p&gt;&lt;p&gt;&quot;autobrightness: 자동 밝기조절이 처음 설정되었을 때&amp;nbsp;밝기 다이얼로그 열리지 않음 문제 해결&quot;되돌림 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;trebuchet: &amp;nbsp;검색 바가 보이지 않을 때&amp;nbsp;바로가기 오버래핑, 항목 놓기가 안되는 것을&amp;nbsp;확인 (android_packages_apps_Trebuchet)&lt;/p&gt;&lt;p&gt;base: 안전모드에서 재부팅 옵션을 보이지 않음 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;라이브 락스크린이 보이지 않는 것 해결 (android_packages_providers_ThemesProvider)&lt;/p&gt;&lt;p&gt;WirelessSettings: NFC 어댑터가 없을 때 NFC 카테고리 제거 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;email: 쓸모없는 아이콘 (android_packages_apps_Email)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/77</guid>
      <comments>https://oztheme.tistory.com/77#entry77comment</comments>
      <pubDate>Wed, 28 Oct 2015 11:08:49 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151026-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/76</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2765DF50562E1B292A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2765DF50562E1B292A&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/24/15(Sat)&amp;nbsp;~ Oct/26 (Mon)&lt;/h3&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;unifiedemail: junk icon (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;p&gt;email: return default folder name for subfolders (android_packages_apps_Email)&lt;/p&gt;&lt;p&gt;email: allow move/copy operations to more system folders (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;p&gt;PolarClock: Don't draw on invisible surfaces (android_packages_wallpapers_Basic)&lt;/p&gt;&lt;p&gt;Fix formatting (android_packages_apps_Mms-caf)&lt;/p&gt;&lt;p&gt;Proguard causing RuntimeException (android_packages_apps_DeskClock)&lt;/p&gt;&lt;p&gt;Null-check in case an AlarmInstance's Alarm no longer exists. (android_packages_apps_DeskClock)&lt;/p&gt;&lt;p&gt;settings: update contributors stats (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;settings: update control ring stream string (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;bootanimation: Set CPU boost hint (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Wifi tile: don't set items visible from non-ui thread (android_frameworks_base)&lt;/p&gt;&lt;p&gt;protected-apps: don't show a progress dialog for short operations (android_packages_apps_Settings)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 24일 (토) ~ 10월 26일 (월)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;unifiedmail: 별 필요없는 아이콘 (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;p&gt;email: 하위 폴더를 위한 기본 폴더명 반환 (android_packages_apps_Email)&lt;/p&gt;&lt;p&gt;email: 더 많은 시스템 폴더에 이동/복사 명령 허가 (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;p&gt;PolarClock: 투명한 표면에 드로우 안함 (android_packages_apps_DeskClock)&lt;/p&gt;&lt;p&gt;MMS 포맷 수정 (android_packages_apps_Mms-caf)&lt;/p&gt;&lt;p&gt;RuntimeException에 대한 프로가드 시행 (android_packages_apps_DeskClock)&lt;/p&gt;&lt;p&gt;알람 인스턴스의 알람이 더 이상 존재하지 않을 때 Null-check (android_packages_apps_DeskClock)&lt;/p&gt;&lt;p&gt;settings: 기여자 목록 업데이트 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;settings: control ring string 문자열 업데이트 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;bootanimation: CPU 부스트 설정 제공 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Wifi 타일: non-ui 쓰레드에서 아이템 보이지 않도록 함 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;protected-apps: 짧은 명령에는 프로그레스&amp;nbsp;다이얼로그 보이지 않도록 함 (android_packages_apps_Settings)&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/76</guid>
      <comments>https://oztheme.tistory.com/76#entry76comment</comments>
      <pubDate>Mon, 26 Oct 2015 21:39:13 +0900</pubDate>
    </item>
    <item>
      <title>Teespring에서 Pure Android 티셔츠를 출시하다.</title>
      <link>https://oztheme.tistory.com/75</link>
      <description>&lt;h1&gt;Teespring에서 Pure Android 티셔츠를 출시하다.&lt;/h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;새로운 넥서스, 구글 넥서스 5x와 넥서스 6p의 출시와 함께 미국의 &lt;ins&gt;&lt;a href=&quot;https://teespring.com&quot;&gt;Teespring&lt;/a&gt;&lt;/ins&gt;에서는 Pure Android라는 로고와 함께 티셔츠를 출시했습니다. 뒷면에는 안드로이드 전문 포럼인 안드로이드 센트럴 Android Central&amp;nbsp;&lt;ins&gt;&lt;a href=&quot;http://www.androidcentral.com&quot;&gt;(&lt;/a&gt;&lt;a href=&quot;http://www.androidcentral.com&quot;&gt;http://www.androidcentral.com&lt;/a&gt;)&lt;/ins&gt;의 로고가 있네요.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 470px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21276350562D714E0B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21276350562D714E0B&quot; width=&quot;470&quot; height=&quot;560&quot; filename=&quot;Front.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;색상 : 그린, 차콜, 블루, 그레이&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;품목은 3가지, 티셔츠, 후드티, 우리나라에서는 맨투맨으로 불리는 롱 슬리브 티셔츠로 분류되어있습니다.&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;가격은 각각 $&lt;/span&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;20 (티셔츠), $38.99(후드티), $25.99(맨투맨)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;후드 덕후에 Pure Android인 AOSP(Android OpenSource Project)를 좋아하기 때문에 하나 지르고싶지만… 침만 꼴깍 삼킵니다 ㅠㅠ&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h3&gt;갤러리&lt;/h3&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2344C64E562D716E13&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2344C64E562D716E13&quot; width=&quot;450&quot; height=&quot;490&quot; filename=&quot;hood_front.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/243AFF4E562D71721C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F243AFF4E562D71721C&quot; width=&quot;450&quot; height=&quot;490&quot; filename=&quot;hood_back.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;후드 티셔츠 ($38.88) &amp;nbsp;색상 : 그린, 차콜, 블루, 네이비&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2344BD4E562D717713&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2344BD4E562D717713&quot; width=&quot;450&quot; height=&quot;508&quot; filename=&quot;m2m_front.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2439D84E562D717A1E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2439D84E562D717A1E&quot; width=&quot;450&quot; height=&quot;508&quot; filename=&quot;m2m_back.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;맨투맨 ($25.99) 색상 : 그린, 차콜, 블루&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/75</guid>
      <comments>https://oztheme.tistory.com/75#entry75comment</comments>
      <pubDate>Mon, 26 Oct 2015 10:18:37 +0900</pubDate>
    </item>
    <item>
      <title>색상, 소재 다양해진 스마트폰 무엇이 있을까?!</title>
      <link>https://oztheme.tistory.com/74</link>
      <description>&lt;h1 id=&quot;색상,-소재-다양해진-스마트폰,-무엇이-있을까?![]()&quot;&gt;&lt;a name=&quot;색상,-소재-다양해진-스마트폰,-무엇이-있을까?![]()&quot; href=&quot;#색상,-소재-다양해진-스마트폰,-무엇이-있을까?![]()&quot;&gt;&lt;/a&gt;색상, 소재 다양해진 스마트폰, 무엇이 있을까?&lt;img src=&quot;&quot; alt=&quot;&quot;&gt;&lt;/h1&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px; width: 900px; height: 506px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2740E44B5629AB7F13&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2740E44B5629AB7F13&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;5x.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 900px; height: 506px;&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; width: 900px; height: 506px;;&quot;&gt;사진은 카본(블랙), 쿼츠(화이트), 아이스(민트) 색상으로 출시된 구글 넥서스 5x&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;올해에는 울긋불긋 낙엽처럼 스마트폰의 색상도 점차 다양해지고있다. 플라스틱 바디가 주류를 이루었던 스마트폰 시장은 점점 메탈소재의 바디로 채워지고있다. 아이폰 5의 메탈, 아이폰 5s의 골드부터 시작된 메탈, 골드, 실버 열풍에 이어 이제는 컬러도 대세가 된 것이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 500px; width: 500px; height: 436px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215EC1505629CA6B09&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215EC1505629CA6B09&quot; width=&quot;500&quot; height=&quot;436&quot; filename=&quot;iPhone-5s-gold-three-up-back-front-profile.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 500px; height: 436px;&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; width: 500px; height: 436px;;&quot;&gt;아이폰 5s&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;애플의 아이폰만 이러한 변화가 있는 것은 아니다. 삼성전자에서도 갤럭시 알파를 시작으로 메탈 바디를 채택했고, 갤럭시 S6 엣지에 골드 플래티넘, 그린 에메랄드를 S6에는 블루 토파즈를 추가하며 다양한 색상의 신호탄을 쏘아올렸다. LG는 G3부터 다양한 색상들을 추가해 출시하기 시작했다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;올해에도 역시 메탈과 골드는 풍년이다. 메탈하면 깔끔한 실버!를 외치며 실버도 골드 못지 않게 인기를 누리고있다. 루머로만 알려졌던 아이폰 6S의 로즈골드의 실체가 밝혀지며 핑크도 엄청난 인기를 누리고있다. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;남자는 핫핑크라던 남자들 어디갔는가 빨리 지르길 바란다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;올해 하반기 출시, 출시 예정인 컬러풀한 스마트폰을 만나보는 시간을 가지고 있는 당신에겐 지름신이 강림하고 뽐뿌가 올 것이라 짐작된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;우리나라 시장에서 주로 언급되는 세개의 브랜드 제품들을 모아봤다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;애플-iphone,-ipad,-ipod&quot;&gt;&lt;a name=&quot;애플-iphone,-ipad,-ipod&quot; href=&quot;#애플-iphone,-ipad,-ipod&quot;&gt;&lt;/a&gt;애플 iPhone&lt;/h2&gt;
&lt;p&gt;골드 전성시대를 연 장본인인 만큼 골드 하나는 정말 잘 뽑고있다. 이번 iPhone 6S와 6S Plus에서 처음 선보인 로즈 골드는 핑크계의 혁명이라 불리어도 되지 않을까.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215EC1505629CA6B09&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215EC1505629CA6B09&quot; width=&quot;450&quot; height=&quot;392&quot; filename=&quot;iPhone-5s-gold-three-up-back-front-profile.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;아이폰 5s&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/225D6C505629CB160F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F225D6C505629CB160F&quot; width=&quot;450&quot; height=&quot;375&quot; filename=&quot;aip6.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;아이폰 6s&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 580px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2234824E5629CBF80C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2234824E5629CBF80C&quot; width=&quot;580&quot; height=&quot;932&quot; filename=&quot;rose gold.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;현재 예약판매중인 로즈골드 색상.
날 가저요 엉엉 ㅠㅠ&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;삼성-갤럭시&quot;&gt;&lt;a name=&quot;삼성-갤럭시&quot; href=&quot;#삼성-갤럭시&quot;&gt;&lt;/a&gt;삼성 갤럭시&lt;/h2&gt;
&lt;p&gt;퀄컴이 발열 카운터를 맞고 경쟁사들이 하나둘씩 소극적인 모습을 보이고 있을 때, 반대로 자사의 SoC 엑시노스 7420로 발열 논란의 최대수혜자가 되었다. 그리고 경쟁사 애플과는 반대로 메탈 프레임에 글래스를 채용하여 더욱 빛나는 색상을, 다른 안드로이드 제조사에 치명타를 안겨주고있다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;height: 450px;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2243E0485629CD7716&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2243E0485629CD7716&quot; width=&quot;450&quot; height=&quot;450&quot; filename=&quot;Note 5 Silver.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;갤럭시 노트 5 실버 티타늄&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;height: 450px;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/251E53485629CD773C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F251E53485629CD773C&quot; width=&quot;450&quot; height=&quot;450&quot; filename=&quot;S6Edge_Gold.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;갤럭시 S6 엣지 골드 플래티넘&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/277086385629F4B530&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F277086385629F4B530&quot; width=&quot;450&quot; height=&quot;450&quot; filename=&quot;sec_SM-G925KZGFKTC_008_Green-Emerald_green_thumb_10049512014101.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/214EEF3A5629FE1414&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F214EEF3A5629FE1414&quot; width=&quot;450&quot; height=&quot;450&quot; filename=&quot;hk-en_SM-A5000ZWATGY_001_Front_pink_1024x1024.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;lg-g-시리즈,-v10&quot;&gt;&lt;a name=&quot;lg-g-시리즈,-v10&quot; href=&quot;#lg-g-시리즈,-v10&quot;&gt;&lt;/a&gt;LG G 시리즈, V10&lt;/h2&gt;
&lt;p&gt;G3 이후로 여러가지 색상을 출시하였다. 최근작인 G4에는 가죽을, LG 최초의 메탈 프레임 클래스(Class)와 &lt;del&gt;슈퍼 프리미엄폰&lt;/del&gt; V10에서는 듀라스킨 등을 적용해 타 회사들과는 비슷하면서도 다른 노선을 취하고 있다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2706B23A5629FE7C40&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2706B23A5629FE7C40&quot; width=&quot;900&quot; height=&quot;474&quot; filename=&quot;LG-V10-01[1].jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;다양한 색상의 LG V10 (스페이스 블랙, 럭스 화이트, 모던 베이지, 오팔 블루, 오션 블루)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;맨 위 사진에서 볼 수 있는&amp;nbsp;넥서스 5x (LG, 구글 합작)까지&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;결론&quot;&gt;&lt;a name=&quot;결론&quot; href=&quot;#결론&quot;&gt;&lt;/a&gt;결론&lt;/h2&gt;
&lt;p&gt;필자도 이제 LG 옵티머스 G Pro를 3년째 쓰고있어 슬슬 바꿀 때가 된 것 같다. 하지만 아이폰이냐 안드로이드냐. 애플이냐 삼성이냐. LG냐 넥서스냐….. 하는 고민을 계속 하다보니 알아보기만 알아보고 내 손엔 여전히 깨지고 까진 G Pro만 남아있었다.&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;strike&gt;아마도 2년은 더 써야되지 않을까란 생각도 든다.&lt;/strike&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;del&gt;&lt;br /&gt;&lt;/del&gt;&lt;/p&gt;&lt;p&gt;디자인은 아이폰 6 등장 이후로 많이 비슷해진 모양이지만 회사마다 각자의 개성을 살려 잘 만들어내고있는 것 같다. 퀄컴의 스냅드래곤 810의 발열 논란 때문에 올해는 조금 잠잠해지지 않을까 라고 생각했던 예상은 모두 빗나갔고, 성능뿐만이 아닌 디자인과 부가기능, 심지어 출시할때부터 가성비로 승부수를 내는 다양한 기기들도 출시되었다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;색상만 보고 산다고 해서 큰 무리는 없겠지만 그 외에도 다양한 장점을 가지고 있는 각각의 스마트폰을 잘 비교해보고 현명한 선택을 하기 바란다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strike&gt;LG빠가 LG 사진을 한개만 올린건 함정&lt;/strike&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(203, 203, 203); padding: 10px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p&gt;&lt;strong&gt; 그리고 다시한번 말한다.
&lt;/strong&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;strong&gt;
&lt;p&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;남자는 핫핑크라던 남자들 어디갔는가 빨리 지르길 바란다.&lt;/span&gt;&lt;/p&gt;&lt;/strong&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/74</guid>
      <comments>https://oztheme.tistory.com/74#entry74comment</comments>
      <pubDate>Fri, 23 Oct 2015 18:38:19 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151023-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/73</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2109893856297BFB22&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2109893856297BFB22&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/23/15 (Fri)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;Blank screen during shutdown and reboot (android_bootable_recovery)&lt;/p&gt;&lt;p&gt;Settings: Fix LCD Density preference crash on secondary user (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;AssetAtlasService: fix a potential race condition (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Settings: update layouts (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;sepolicy: create new conditional bootchart (android_external_sepolicy)&lt;/p&gt;&lt;p&gt;sepolicy: allow various process access /data/bootchart folder (android_vendor_cm)&lt;/p&gt;&lt;p&gt;Revert &quot;efence: Add electric fence to default manifest.&quot; (android)&lt;/p&gt;&lt;p&gt;Make sure the APN setting list is never null. (android_frameworks_opt_telephony)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 23일 (금)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;종료, 재부팅하는 동안 빈 화면 출력 해결 (android_bootable_recovery)&lt;/p&gt;&lt;p&gt;Settings: 메인 사용자 외 사용자에서 LCD Density(DPI)값 설정 강제종료&amp;nbsp;해결 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;AssetAtlasService: potential race condition 해결&lt;/p&gt;&lt;p&gt;Settings: 레이아웃 업데이트 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;sepolicy: 새로운 bootchart 조건 생성 (android_external_sepolicy)&lt;/p&gt;&lt;p&gt;sepolicy: /data/bootchart 다양한 프로세스 접근 허가 (android_vendor_cm)&lt;/p&gt;&lt;p&gt;되돌림 &quot;efence: 기본 매니페스트에서 electric fence 추가&quot; (android)&lt;/p&gt;&lt;p&gt;APN setting 목록 비어있지 않게 함 (android_frameworks_opt_telephony)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/73</guid>
      <comments>https://oztheme.tistory.com/73#entry73comment</comments>
      <pubDate>Fri, 23 Oct 2015 17:41:16 +0900</pubDate>
    </item>
    <item>
      <title>구글 맵이 더 이상 저장소에 대한 권한을 요구하지 않게 되었다.</title>
      <link>https://oztheme.tistory.com/72</link>
      <description>&lt;h1 id=&quot;구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot;&gt;&lt;a name=&quot;구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot; href=&quot;#구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;/h1&gt;&lt;h1 style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26424F3B562989BF10&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26424F3B562989BF10&quot; width=&quot;900&quot; height=&quot;619&quot; filename=&quot;map-app.png&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/h1&gt;&lt;h1 id=&quot;구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot;&gt;&lt;/h1&gt;&lt;h1 id=&quot;구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot;&gt;&lt;br /&gt;&lt;/h1&gt;&lt;h1 id=&quot;구글맵이-더-이상-저장소에-대한-권한을-요구하지-않게-되었다.&quot;&gt;구글 맵이 더 이상 저장소에 대한 권한을 요구하지 않게 되었다.&lt;/h1&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;p&gt;안드로이드 버전이 6.0 마시멜로로 판올림되었고, 권한 관리가 추가되었다. 이로 인해 사용자는 애플리케이션이 요구하는 권한을 관리할 수 있게 되었고 많은 사용자들이 이를 유심히 살펴보기 시작했다. 왜 손전등앱에서 내 문자세시지 권한을 필요로 하는것일까? &lt;del&gt;거울에 개인정보 권한이 왜 필요한가? 보고있나 삼성?!&lt;/del&gt;&lt;/p&gt;&lt;p&gt;&lt;del&gt;&lt;br /&gt;&lt;/del&gt;&lt;/p&gt;&lt;p&gt;많은 유저들은 개인정보를 캐내려는 악성 앱에 대한 구글 Play Store의 큐레이팅을 신뢰하고있다. 그러나 다운로드 받으려는 애플리케이션에서 이상한 권한이 발견되기도 한다. 문제는 이 가끔 발견되는 애플리케이션의 이상한 권한들은 개발자들의 의지가 아닌 경우도 있다. 구글이 권한 요청을 필수로 추가하도록 하기 때문이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;최근 몇년간, 구글은 개발자들이 Google Maps에 대한 SDK를 사용할 때 WRITE_EXTERNAL_STORAGE 권한을 추가하도록 했다. 하지만 Tahsin Dane이란 개발자가 medium post에 기록했고, 구글은 더이상 그 권한을 필요하지 않을 시 요구하지 않도록 했다. 이제 자신의 애플리케이션이 필요하지 않은 권한으로 사용자들에게 거부감을 받을 필요는 없어졌다는 얘기다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;하지만 여전히&amp;nbsp;Google Map는 안드로이드 6.0 마쉬멜로 이하 버전에서는 WRITE_EXTERNAL_STORAGE 권한이 필요하다. 6.0 이후의 안드로이드에서는 완전히 권한이 제거된다고 한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Original Post: &lt;ins&gt;&lt;a href=&quot;http://www.xda-developers.com/google-maps-no-longer-requires-storage-permission/&quot;&gt;Google Maps No Longer Requires Storage Permission&lt;/a&gt;&lt;/ins&gt;&lt;br /&gt;by. &lt;ins&gt;&lt;a href=&quot;http://www.xda-developers.com/author/mishaalrahman/&quot;&gt;Mishaal Rahman(@xda-developers)&lt;/a&gt;&lt;/ins&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/72</guid>
      <comments>https://oztheme.tistory.com/72#entry72comment</comments>
      <pubDate>Fri, 23 Oct 2015 10:16:17 +0900</pubDate>
    </item>
    <item>
      <title>스케일이 크다. WD의 샌디스크 인수</title>
      <link>https://oztheme.tistory.com/71</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px; width: 900px; height: 526px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/252A694156287F2625&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F252A694156287F2625&quot; width=&quot;900&quot; height=&quot;526&quot; filename=&quot;WD-Logo-2.png&quot; filemime=&quot;image/png&quot; style=&quot;width: 900px; height: 526px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h1&gt;스케일이 크다. WD의 샌디스크 인수&lt;/h1&gt;
&lt;p&gt;HDD 제조업체 Western Digital (웨스턴 디지털, 이하 WD)가 낸드 플래시 메모리 제조업체 샌디스크(Sandisk)를 인수하겠다고 선언했다. 지난 9월 중국의 칭화유니그룹에게 15%의 주식을 인수해주고 받은&amp;nbsp;투자금을 이번&amp;nbsp;인수에 쓸 자금으로 썼을 가능성이 크다.&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Western Digital이 인수선언한&amp;nbsp;샌디스크는 플래시 메모리 시장에서 최강자로 불리우고있다. 현재 샌디스크의 현금과 주식을 합한 모든 자산 규모가 약 190억 달러 우리 돈으로 약 22조다. 그 외에도 낸드 플래시 메모리관련 특허와 기술을 가지고 있으며, SSD에서도 높은 성능과 동시에 착한 가격으로 사랑받고 있다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 600px; width: 600px; height: 116px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22597C4156287F2103&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22597C4156287F2103&quot; width=&quot;600&quot; height=&quot;116&quot; filename=&quot;sandisk logo.png&quot; filemime=&quot;image/png&quot; style=&quot;width: 600px; height: 116px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;내년 3분기 안에 인수 과정이 끝난다고 한다. 한편으로는 중국 자본의 IT, 반도체 시장의 진출이 가속화된 것 아니냐는 의견이 나오고는 있지만, 내년 3분기까지는 어떻게 될지 모르고, 인수 과정이 모두 마무리된다면 WD는 HDD와 SDD 시장에서 강력한 힘을 발휘하지 않을까 기대된다.&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/71</guid>
      <comments>https://oztheme.tistory.com/71#entry71comment</comments>
      <pubDate>Thu, 22 Oct 2015 15:18:35 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151022-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/70</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2505974C56285D4028&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2505974C56285D4028&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/22/15 (Thu)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;efence: fix compile warning and white space trailling (android_external_boundarydevices_efence)&lt;/p&gt;&lt;p&gt;efence: Add electric fence to default manifest. (android)&lt;/p&gt;&lt;p&gt;sensorservice: customize sensor fusion mag filter via prop (android_frameworks_native)&lt;/p&gt;&lt;p&gt;Protected Apps: add some side padding in app list view (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;SystemUI: Improve play queue string (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Thumbnail update on copy and overwrite issue of pictures (android_packages_apps_CMFileManager)&lt;/p&gt;&lt;p&gt;Re-apply live lock screen on update (android_packages_providers_ThemesProvider)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 22일 (목)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;efence: 컴파일 경고, 공백 trailling 수정 (android_external_boundarydevices_efence)&lt;/p&gt;&lt;p&gt;efence: 기본 매니패스트에 electric fence 추가 (android)&lt;/p&gt;&lt;p&gt;sensorservice: prop에서 sensor fusion mag 필터 수정 (android_frameworks_native)&lt;/p&gt;&lt;p&gt;보호된 앱: 앱 리스트에서 일부 측면에&amp;nbsp;padding 추가 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;SystemUi: 플레이 큐 문자열 개선 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;사진 복사, 붙여넣기 문제에서&amp;nbsp;썸네일 업데이트 (android_packages_apps_CMFileManager)&lt;/p&gt;&lt;p&gt;업데이트에서&amp;nbsp;라이브 잠금화면 재설정&amp;nbsp;(android_packages_providers_ThemesProvider)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/70</guid>
      <comments>https://oztheme.tistory.com/70#entry70comment</comments>
      <pubDate>Thu, 22 Oct 2015 13:03:27 +0900</pubDate>
    </item>
    <item>
      <title>플래그가 섰다!</title>
      <link>https://oztheme.tistory.com/69</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 738px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2501CD3356285BFC2D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2501CD3356285BFC2D&quot; width=&quot;738&quot; height=&quot;412&quot; filename=&quot;asdf.PNG&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;플래그가 섰다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그것도 5학년 플래그가...&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;엉엉엉엉엉엉...ㅠㅠ&lt;/p&gt;</description>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/69</guid>
      <comments>https://oztheme.tistory.com/69#entry69comment</comments>
      <pubDate>Thu, 22 Oct 2015 12:46:15 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151021-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/66</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/254C2E4456275F9B29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F254C2E4456275F9B29&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/21/15 (Wed)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;TeleService: Make ongoing mwi notification overlayable (android_packages_services_Telephony)&lt;/p&gt;&lt;p&gt;base: initialized context ContentResolver reference before use it. (android_frameworks_base)&lt;/p&gt;&lt;p&gt;envsetup: Show error when supplied dir isn't present with mmm (android_build)&lt;/p&gt;&lt;p&gt;edify: Fix _WordWrap function calls (android_build)&lt;/p&gt;&lt;p&gt;telecomm: initialize defaultOutgoing status (android_packages_services_Telecomm)&lt;/p&gt;&lt;p&gt;Lights Modes: Avoid regular values updates (android_frameworks_base)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 21일 (수)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;TeleService: 진행중인 mwi 알림 오버레이 가능하도록 만듬 (android_packages_servies_Telephony)&lt;/p&gt;&lt;p&gt;base: ContentResolver 레퍼런스를 사용하기 전에&amp;nbsp;컨텍스트 초기화 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;envsetup: mmm을 이용해 제공된 디렉토리가 존재하지 않을 때 에러를 보여줌 (android_build)&lt;/p&gt;&lt;p&gt;edify: WordWrap 기능 호출 해결 (android_build)&lt;/p&gt;&lt;p&gt;telecomm: defaultOutgoing 상태 초기화 (android_packages_servies_Telecomm)&lt;/p&gt;&lt;p&gt;Lights Modes: 일반 값 업데이트 거부&amp;nbsp;(android_frameworks_base)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/66</guid>
      <comments>https://oztheme.tistory.com/66#entry66comment</comments>
      <pubDate>Wed, 21 Oct 2015 19:00:06 +0900</pubDate>
    </item>
    <item>
      <title>마크다운의 문법을 알아보자 (1편)</title>
      <link>https://oztheme.tistory.com/65</link>
      <description>&lt;del&gt;이 문서는 암묵적인 룰에 의해 마크다운으로 작성되었습니다&lt;/del&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23364146562748C517&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F23364146562748C517&quot; width=&quot;900&quot; height=&quot;553&quot; filename=&quot;Markdown-mark.svg_.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(203, 203, 203); padding: 10px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;text-decoration: none; vertical-align: baseline; color: rgb(50, 105, 160); font-size: 14pt;&quot;&gt;&lt;a href=&quot;http://oztheme.tistory.com/64&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;이전 포스트 :&amp;nbsp;마크다운 (Markdown)이란 무엇일까?&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;편을 보고 오시는 것을 추천합니다.&lt;/p&gt;&lt;/div&gt;

&lt;h1 id=&quot;마크다운-문법&quot; style=&quot;clear: both;font-size: 2.2em; font-weight: bold; margin: 1.5em 0px 1em;&quot;&gt;&lt;a name=&quot;마크다운-문법&quot; href=&quot;#마크다운-문법&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;마크다운 문법&lt;/h1&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;지난 포스트에서는 간단한 소개와 에디터를 작성했다.&lt;br style=&quot;clear: both;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;이번 포스트에서는 마크다운의 문법을 나열하고, 그 문법에 하나하나 대응하는 html 태그들을 작성하려고 한다.  존 그루버가 만든 마크다운 문법 외에도 &lt;ins&gt;&lt;a href=&quot;http://fletcherpenney.net/multimarkdown/&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;fletchetpenney.net&lt;/a&gt;&lt;/ins&gt;에서 만든 MultiMarkdown, Github (&lt;ins&gt;&lt;a href=&quot;http://github.com&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;Github.com&lt;/a&gt;&lt;/ins&gt;)에서 만든 Github-Flavored Markdown이 있다.&lt;br style=&quot;clear: both;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;필자는 하루패드(Haroopad)를 이용하여 작성하다보니 Haroopad Flavored Markdown도 추가하게 되었다.&lt;/p&gt;&lt;h2 id=&quot;제목&quot; style=&quot;clear: both;font-size: 1.8em; font-weight: bold; margin: 1.275em 0px 0.85em;border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(230, 230, 230); line-height: 1.6;&quot;&gt;&lt;a name=&quot;제목&quot; href=&quot;#제목&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;제목&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;#&lt;/code&gt;의 개수로 html의 &lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h1&amp;gt;~&amp;lt;h6&amp;gt;&lt;/code&gt;까지 표현할 수 있다.&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;table style=&quot;padding: 0px; border-collapse: collapse; border-spacing: 0px; margin-bottom: 16px;background-color: rgb(250, 250, 250);&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;마크다운 문법&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;html 태그&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;설명&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;예제&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;#내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h1&amp;gt;내용&amp;lt;/h1&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 1&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h1 style=&quot;clear: both;font-size: 2.2em; font-weight: bold; margin: 1.5em 0px 1em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;&quot;&gt;제목1&lt;/h1&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;##내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h2&amp;gt;내용&amp;lt;/h2&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 2&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h2 style=&quot;clear: both;font-size: 1.8em; font-weight: bold; margin: 1.275em 0px 0.85em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(230, 230, 230); line-height: 1.6;&quot;&gt;제목2&lt;/h2&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;###내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h3&amp;gt;내용&amp;lt;/h3&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 3&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h3 style=&quot;clear: both;font-size: 1.6em; font-weight: bold; margin: 1.125em 0px 0.75em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;&quot;&gt;제목3&lt;/h3&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;####내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h4&amp;gt;내용&amp;lt;/h4&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 4&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h4 style=&quot;clear: both;font-size: 1.4em; font-weight: bold; margin: 0.99em 0px 0.66em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;&quot;&gt;제목4&lt;/h4&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;#####내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h5&amp;gt;내용&amp;lt;/h5&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 5&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h5 style=&quot;clear: both;font-size: 1.2em; font-weight: bold; margin: 0.855em 0px 0.57em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;&quot;&gt;제목5&lt;/h5&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;######내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;h6&amp;gt;내용&amp;lt;/h6&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;제목 6&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;h6 style=&quot;clear: both;font-size: 1em; font-weight: bold; margin: 0.75em 0px 0.5em;margin-top: 0px;margin-top: 0px;margin-bottom: 0px;color: rgb(119, 119, 119);&quot;&gt;제목6&lt;/h6&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;h2 id=&quot;표현&quot; style=&quot;clear: both;font-size: 1.8em; font-weight: bold; margin: 1.275em 0px 0.85em;border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(230, 230, 230); line-height: 1.6;&quot;&gt;&lt;a name=&quot;표현&quot; href=&quot;#표현&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;표현&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;table style=&quot;padding: 0px; border-collapse: collapse; border-spacing: 0px; margin-bottom: 16px;background-color: rgb(250, 250, 250);&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;마크다운 문법&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;html 태그&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;설명&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;예제&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;비고&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;**내용**&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;b&amp;gt;내용&amp;lt;/b&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;굵게&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;strong style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;굵게&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;*내용*&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;i&amp;gt;내용&amp;lt;i&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;기울이기&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;em style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;기울이기&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;++내용++&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;u&amp;gt;내용&amp;lt;/u&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;밑줄&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;ins style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;밑줄&lt;/ins&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;MultiMarkdown&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;~~내용~~&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;del&amp;gt;내용&amp;lt;/del&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;취소선&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;del style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;취소선&lt;/del&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;Github Flavored markdown&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;==내용==&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;strong class='highlight'&amp;gt;내용&amp;lt;/strong&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;강조&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;mark style=&quot;color: rgb(0, 0, 0); background-color: rgb(252, 248, 227);margin-top: 0px;margin-bottom: 0px;&quot;&gt;강조&lt;/mark&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;Haroopad Flavored Markdown&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;^내용^&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;strong class='superscript'&amp;gt;내용&amp;lt;/strong&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;윗첨자&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;sup style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;윗첨자&lt;/sup&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;~내용~&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;strong class='subscript'&amp;gt;내용&amp;lt;/strong&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;아랫첨자&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;sub style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;아랫첨자&lt;/sub&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;[링크](링크 주소)&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;a href='링크 주소'&amp;gt;링크&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;링크&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;ins style=&quot;margin-top: 0px;margin-bottom: 0px;&quot;&gt;링크&lt;/ins&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;gt; 내용&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;blockquote&amp;gt; 내용 &amp;lt;/blockquote&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;인용구&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;blockquote style=&quot;margin: 1em 20px;margin-top: 0px;margin-bottom: 0px;border-left-width: 4px; border-left-style: solid; border-left-color: rgb(230, 230, 230); padding: 0px 15px; font-style: italic;&quot;&gt; 인용구 &lt;/blockquote&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;h2 id=&quot;삽입-(이미지,-임베딩)&quot; style=&quot;clear: both;font-size: 1.8em; font-weight: bold; margin: 1.275em 0px 0.85em;border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(230, 230, 230); line-height: 1.6;&quot;&gt;&lt;a name=&quot;삽입-(이미지,-임베딩)&quot; href=&quot;#삽입-(이미지,-임베딩)&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;삽입 (이미지, 임베딩)&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;table style=&quot;padding: 0px; border-collapse: collapse; border-spacing: 0px; margin-bottom: 16px;background-color: rgb(250, 250, 250);&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;마크다운 문법&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;html 태그&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;설명&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;비고&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;![설명](이미지 링크)&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;img src='이미지 링크' alt='{설명}'&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;이미지 첨부&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;@[설명](미디어 URL)&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;유튜브 등의 &lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;embed&amp;gt;&lt;/code&gt;태그&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;미디어 삽입&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;Haroopad Flavored Markdown&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;blockquote style=&quot;margin: 1em 20px;border-left-width: 4px; border-left-style: solid; border-left-color: rgb(230, 230, 230); padding: 0px 15px; font-style: italic;&quot;&gt;
&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;margin-top: 0px;margin-bottom: 0px;&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;[설명]&lt;/code&gt; 부분의 내용 작성여부는 상관없다.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;h3 id=&quot;이미지-예제&quot; style=&quot;clear: both;font-size: 1.6em; font-weight: bold; margin: 1.125em 0px 0.75em;&quot;&gt;&lt;a name=&quot;이미지-예제&quot; href=&quot;#이미지-예제&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;이미지 예제&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;blockquote style=&quot;margin: 1em 20px;border-left-width: 4px; border-left-style: solid; border-left-color: rgb(230, 230, 230); padding: 0px 15px; font-style: italic;&quot;&gt;
&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;margin-top: 0px;margin-bottom: 0px;&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;![마크다운 로고](https://t1.daumcdn.net/cfile/tistory/23364146562748C517)&lt;/code&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23364146562748C517&quot; style=&quot;max-width: 100%;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;h3 id=&quot;임베딩-예제&quot; style=&quot;clear: both;font-size: 1.6em; font-weight: bold; margin: 1.125em 0px 0.75em;&quot;&gt;&lt;a name=&quot;임베딩-예제&quot; href=&quot;#임베딩-예제&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;임베딩 예제&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;blockquote style=&quot;margin: 1em 20px;border-left-width: 4px; border-left-style: solid; border-left-color: rgb(230, 230, 230); padding: 0px 15px; font-style: italic;&quot;&gt;
&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;margin-top: 0px;&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;![Capsule - Another World](https://www.youtube.com/watch?v=LZ6-PfPx0EM)&lt;/code&gt; &lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;p data-type=&quot;video&quot; data-provider=&quot;youtube&quot; class=&quot;oembeded&quot; style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;iframe src=&quot;https://www.youtube.com/embed/LZ6-PfPx0EM?wmode=transparent&amp;amp;amp&quot; width=&quot;425&quot; height=&quot;349&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;margin-bottom: 0px;&quot;&gt;&lt;del&gt;뜬금없는 캡슐&lt;/del&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p style=&quot;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;h2 id=&quot;코드&quot; style=&quot;clear: both;font-size: 1.8em; font-weight: bold; margin: 1.275em 0px 0.85em;border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(230, 230, 230); line-height: 1.6;&quot;&gt;&lt;a name=&quot;코드&quot; href=&quot;#코드&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;코드&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br style=&quot;clear: both;&quot;&gt;&lt;/p&gt;&lt;table style=&quot;padding: 0px; border-collapse: collapse; border-spacing: 0px; margin-bottom: 16px;background-color: rgb(250, 250, 250);&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;마크다운 문법&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;html 태그&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;설명&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;예제&lt;/th&gt;
&lt;th style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;font-weight: bold;border: 1px solid rgb(230, 230, 230);&quot;&gt;비고&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;p&gt;`코드`&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;code&amp;gt;코드&amp;lt;/code&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;인라인 코드&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;인라인 코드&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style=&quot;background-color: rgb(242, 242, 242);&quot;&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;p&gt;```&lt;/p&gt;&lt;p&gt;코드&lt;/p&gt;&lt;p&gt;```&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;code style=&quot;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;margin-top: 0px;margin-bottom: 0px;font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 85%; padding: 0.2em 0.5em; border: 0px; background-color: rgba(0, 0, 0, 0.0666667);&quot;&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;코드&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;팬스 코드 블럭&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(204, 204, 204); margin: 0px; padding: 6px 13px;border: 1px solid rgb(230, 230, 230);&quot;&gt;Github Flavored Markdown&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;h3 id=&quot;팬스-코드-블럭-(fence-code-block)-예제&quot; style=&quot;clear: both;font-size: 1.6em; font-weight: bold; margin: 1.125em 0px 0.75em;&quot;&gt;&lt;a name=&quot;팬스-코드-블럭-(fence-code-block)-예제&quot; href=&quot;#팬스-코드-블럭-(fence-code-block)-예제&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;팬스 코드 블럭 (Fence code block) 예제&lt;/h3&gt;&lt;blockquote style=&quot;margin: 1em 20px; border-left-width: 4px; border-left-style: solid; border-left-color: rgb(230, 230, 230); padding: 0px 15px;&quot;&gt;&lt;p style=&quot;font-style: italic;&quot;&gt;```&lt;/p&gt;&lt;p&gt;&lt;i&gt;&amp;lt;img src=https://t1.daumcdn.net/cfile/tistory/23364146562748C517&amp;gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;```&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/p&gt;&lt;pre style=&quot;font-style: italic; margin-top: 0px; margin-bottom: 0px; border-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; overflow: auto; padding: 0.5em;&quot;&gt;&lt;code class=&quot;language&quot; data-origin=&quot;&lt;pre&gt;&lt;code class=&amp;quot;language&amp;quot;&gt;&amp;amp;lt;img src=https://t1.daumcdn.net/cfile/tistory/23364146562748C517&amp;amp;gt;
&lt;/code&gt;&lt;/pre&gt;&quot; style=&quot;border: 0px; display: block;font-family: Consolas, Inconsolata, Courier, monospace; font-weight: bold; white-space: pre; margin: 0px;border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; word-wrap: break-word; border: 1px solid rgb(204, 204, 204); padding: 0px 5px; margin: 0px 2px;font-size: 0.9em; font-family: Consolas, Inconsolata, Courier, monospace;&quot;&gt;&lt;span style=&quot;font-size: 0.9em; line-height: 1.5;&quot;&gt;&amp;lt;img src=https://t1.daumcdn.net/cfile/tistory/23364146562748C517&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;&lt;p style=&quot;margin-top: 0px;margin: 1em 0px; word-wrap: break-word;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;h1 id=&quot;마크다운-문법에-대한-레퍼런스&quot; style=&quot;clear: both;font-size: 2.2em; font-weight: bold; margin: 1.5em 0px 1em;&quot;&gt;&lt;a name=&quot;마크다운-문법에-대한-레퍼런스&quot; href=&quot;#마크다운-문법에-대한-레퍼런스&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;마크다운 문법에 대한 레퍼런스&lt;/h1&gt;&lt;ul&gt;
&lt;li style=&quot;display: list-item; line-height: 1.4em;&quot;&gt;John Gruber’s Markdown &lt;ins&gt;&lt;a href=&quot;http://daringfireball.net/projects/markdown/syntax&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://daringfireball.net/projects/markdown/syntax&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;http://daringfireball.net/projects/markdown/syntax&lt;/a&gt;&lt;/ins&gt;&lt;/li&gt;&lt;li style=&quot;display: list-item; line-height: 1.4em;&quot;&gt;Github Flavored Markdown &lt;ins&gt;&lt;a href=&quot;http://github.github.com/github-flavored-markdown/&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://github.github.com/github-flavored-markdown&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;http://github.github.com/github-flavored-markdown&lt;/a&gt;&lt;/ins&gt;&lt;/li&gt;&lt;li style=&quot;display: list-item; line-height: 1.4em;&quot;&gt;MultiMarkdown &lt;ins&gt;&lt;a href=&quot;http://fletcherpenney.net/multimarkdown/&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://fletcherpenney.net/multimarkdown&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;http://fletcherpenney.net/multimarkdown&lt;/a&gt;&lt;/ins&gt;&lt;/li&gt;&lt;li style=&quot;display: list-item; line-height: 1.4em;&quot;&gt;Haroopad Flavored Markdown &lt;ins&gt;&lt;a href=&quot;http://pad.haroopress.com/page.html?f=markdown&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://pad.haroopress.com/page.html?f=markdown&quot; style=&quot;text-decoration: none; vertical-align: baseline;color: rgb(50, 105, 160);&quot;&gt;http://pad.haroopress.com/page.html?f=markdown&lt;/a&gt;&lt;/ins&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>팁/Markdown</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/65</guid>
      <comments>https://oztheme.tistory.com/65#entry65comment</comments>
      <pubDate>Wed, 21 Oct 2015 18:36:52 +0900</pubDate>
    </item>
    <item>
      <title>마크다운 (Markdown)이란 무엇일까?</title>
      <link>https://oztheme.tistory.com/64</link>
      <description>&lt;del&gt;이 문서는 암묵적인 룰에 의해 마크다운으로 작성되었습니다&lt;/del&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/216B493F5625EDAA26&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F216B493F5625EDAA26&quot; width=&quot;900&quot; height=&quot;554&quot; filename=&quot;Markdown-mark.svg_.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;
&lt;h1 id=&quot;마크다운은-무엇인가?&quot;&gt;&lt;a name=&quot;마크다운은-무엇인가?&quot; href=&quot;#마크다운은-무엇인가?&quot;&gt;&lt;/a&gt;마크다운은 무엇인가?&lt;/h1&gt;
&lt;p&gt;로고가 굉장히 심플하다. 그만큼 문법도 심플하다.&lt;br /&gt;마크다운은 일종의 마크업 언어이며, 존 그루버와 아론 스워츠가 만들었다. 확장자는 .md를 쓴다. 위키언어와 유사하기 때문에 위키위키&lt;del&gt;나무위키&lt;/del&gt;에서 많이 쓴다.&lt;br /&gt;&lt;br /&gt;텀블러(Tumblr)같은 블로그 플랫폼에서 지원하기도 한다.&lt;br /&gt;&lt;br /&gt;주로 사용하는 곳은 당연 글쓰기.&lt;br /&gt;간결하고 읽기 쉽기 때문에 금방 익힐 수 있다. 위지윅 에디터는 많은 기능들을 가지고 편리하게 작업할 수 있다면 마크다운 에디터는 있을 것만 있다는 느낌이 강하다.&lt;br /&gt;&lt;br /&gt;여담이지만 티스토리의 에디터는 위지윅 에디터의 일종인데 이 티스토리 에디터의 &lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt;버그가 사용자의 혈압을 상승시키는데 크게 이바지하고있다.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;center&gt;&lt;br /&gt;&lt;code&gt;&amp;lt;span style=&quot;background-color: transparent; font-size: 9pt; line-height: 1.5;&quot;&amp;gt; 내용 &amp;lt;/span&amp;gt;&lt;/code&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;del&gt;아오 빡쳐!&lt;/del&gt;&lt;br /&gt;&lt;/p&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;공식 사이트는 &lt;ins&gt;&lt;a href=&quot;http://daringfireball.net/projects/markdown/&quot;&gt;이곳&lt;/a&gt;&lt;/ins&gt;이며 존 그루버가 만든 MD to HTML perl 스크립트도 있다.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;마크다운-에디터&quot;&gt;&lt;a name=&quot;마크다운-에디터&quot; href=&quot;#마크다운-에디터&quot;&gt;&lt;/a&gt;마크다운 에디터&lt;/h2&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;설치형-에디터&quot;&gt;&lt;a name=&quot;설치형-에디터&quot; href=&quot;#설치형-에디터&quot;&gt;&lt;/a&gt;설치형 에디터&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;Windows&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MarkdownPad2 (&lt;a href=&quot;http://markdownpad.com/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://markdownpad.com&quot;&gt;http://markdownpad.com&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;WriteMonkey (&lt;a href=&quot;http://writemonkey.com/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://writemonkey.com&quot;&gt;http://writemonkey.com&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;하루패드 (Haroopad) (&lt;a href=&quot;http://pad.haroopress.com/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://pad.haroopress.com&quot;&gt;http://pad.haroopress.com&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Mac&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Mou (&lt;a href=&quot;http://25.io/mou/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://25.io/mou&quot;&gt;http://25.io/mou&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;하루패드 (Haroopad) (&lt;a href=&quot;http://pad.haroopress.com/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://pad.haroopress.com&quot;&gt;http://pad.haroopress.com&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;MacDown (&lt;a href=&quot;http://macdown.uranusjr.com/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://macdown.uranusjr.com&quot;&gt;http://macdown.uranusjr.com&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;웹-에디터&quot;&gt;&lt;a name=&quot;웹-에디터&quot; href=&quot;#웹-에디터&quot;&gt;&lt;/a&gt;웹 에디터&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;설치하지 않고 사용가능하다는 장점이 있지만 반응이 느리다&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;StackEdit (&lt;a href=&quot;https://stackedit.io/editor&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://stackedit.io/editor&quot;&gt;https://stackedit.io/editor&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Markable(&lt;a href=&quot;http://markable.in/&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://markable.in/&quot;&gt;http://markable.in/&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>팁/Markdown</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/64</guid>
      <comments>https://oztheme.tistory.com/64#entry64comment</comments>
      <pubDate>Tue, 20 Oct 2015 22:44:12 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151020-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/63</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2210AA3D5625EAA70C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2210AA3D5625EAA70C&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/20/15 (Tue)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;update-binary: support reboot_now on older recoveries (android_bootable_recovery)&lt;/p&gt;&lt;p&gt;Support for faster brightness response to light changes. (android_frameworks_base)&lt;/p&gt;&lt;p&gt;kernel: Don't update defconfig with KERNEL_ADDITIONAL_CONFIG options (android_build)&lt;/p&gt;&lt;p&gt;kernel: use merge-config.sh for integrating KERNEL_ADDITIONAL_CONFIG (android_build)&lt;/p&gt;&lt;p&gt;mka: allow mka to be run from anywhere in the tree (android_build)&lt;/p&gt;&lt;p&gt;Use System Resolver (android_packages_apps_CMFileManager)&lt;/p&gt;&lt;p&gt;Updated CHANGELOG and (c) date (android_vendor_cm)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 20일 (화)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;update-binary: 이전 버전의 리커버리에서도 reboot_now 명령어 지원 (android_bootable_recovery)&lt;/p&gt;&lt;p&gt;빛의 변화에 따라 빠른 밝기 반응 지원 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;kernel: defconfig에서&amp;nbsp;KERNEL_ADDITIONAL_CONFIG 업데이트되지 않음 (android_build)&lt;/p&gt;&lt;p&gt;kernel: KERNEL_ADDITIONAL_CONFIG 통합&amp;nbsp;위해 merge-config.sh 사용&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;(android_build)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;mka: 트리 어디에서든 mka 사용 허가 (android_build)&lt;/p&gt;&lt;p&gt;시스템 해결방안 사용 (android_packages_apps_CMFileManager)&lt;/p&gt;&lt;p&gt;CHANGELOG와 (c) date 업데이트 (android_vendor_cm)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/63</guid>
      <comments>https://oztheme.tistory.com/63#entry63comment</comments>
      <pubDate>Tue, 20 Oct 2015 16:26:36 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151019-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/59</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2245444E562324A62C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2245444E562324A62C&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;/h1&gt;&lt;h3&gt;Oct/19/15 (Mon)&lt;/h3&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot; font-weight: normal; line-height: 18px; border: 1px solid rgb(247, 247, 247); padding: 10px;&quot; &lt;p=&quot;&quot;&gt;Ion: Support exif rotation when using deepzoom (ion)&lt;p&gt;&lt;/p&gt;
&lt;p&gt;email: Add an ActionBar to the mail app's PreferenceActivity (android_packages_apps_Email)&lt;/p&gt;
&lt;p&gt;Add an ActionBar to the mail app's PreferenceActivity. (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/18/15 (Sun)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;sgxfreq: add sysfs interface to store frequency limit (android_hardware_ti_omap4)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;h3&gt;15년 10월 19일 (월)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;IonL deepzoom 사용시&amp;nbsp;exif 회전 지원(ion)&lt;/p&gt;
&lt;p&gt;email: ActionBar에 메일 앱의&amp;nbsp;PreferenceActivity추가 (android_packages_apps_Email)&lt;/p&gt;
&lt;p&gt;ActionBar에 메일 앱의&amp;nbsp;PreferenceActivity&amp;nbsp;추가 (android_packages_apps_UnifiedEmail)&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 18일 (일)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;sgxfre: sysfs 인터페이스 추가 (주파수 한계 저장) (android_hardware_ti_omap4)&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/59</guid>
      <comments>https://oztheme.tistory.com/59#entry59comment</comments>
      <pubDate>Mon, 19 Oct 2015 19:26:30 +0900</pubDate>
    </item>
    <item>
      <title>Goldmund(골드문트) - Stereotype Lovesong (Feat. YUKARI) (EZ2AC : EVOLVE)</title>
      <link>https://oztheme.tistory.com/60</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/217C7733562327BE0B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F217C7733562327BE0B&quot; width=&quot;450&quot; height=&quot;450&quot; filename=&quot;418601.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;싱글 버전&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 450px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26090233562327BF02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26090233562327BF02&quot; width=&quot;450&quot; height=&quot;337&quot; filename=&quot;maxresdefault (1).jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;EZ2AC 인게임 버전 (NM)&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;center&gt;&lt;h1 id=&quot;artist-name&quot;&gt;Goldmund(골드문트)&amp;nbsp;- Stereotype Lovesong (Feat. YUKARI)&lt;/h1&gt;&lt;/center&gt;

&lt;h3 id=&quot;information&quot;&gt;Information&lt;/h3&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;388&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; width: 388px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;제목&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204); border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Stereotype Lovesong&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-top-width: 0px; border-top-style: none; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;페이스북 페이지&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;https://www.facebook.com/goldmund.kr?fref=ts&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;작곡&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Goldmund&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;SoundCloud&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;https://soundcloud.com/goldmundkr/goldmund-stereotype-lovesong&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;작사&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Goldmund&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;보컬&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Goldmund, YUKARI&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;장르&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Indie&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;멜론&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://www.melon.com/album/detail.htm?albumId=2240356&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;앨범아트&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Haru-Sabin&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;벅스&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://music.bugs.co.kr/album/418601&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;최초수록&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;EZ2AC : EVOLVE&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;엠넷&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://www.mnet.com/album/332420&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;BPM&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;121&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;지니&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://www.genie.co.kr/detail/f_Album_Info.asp?axnm=80409277&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Playtime&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;4:10&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;네이버&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://music.naver.com/album/index.nhn?albumId=419597&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 84px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;In Game&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 124px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;2:18&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 20px; height: 24px; border-bottom-width: 0px; border-bottom-style: none; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 95px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;삼성&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 68px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://music.samsung.com/album/KD0018789&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Link&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;낯설고도 아름다운 조우, [Unplanned Works]&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;모든 것은 계획되지 않았다. 2013년 7월 두 사람은 처음 작업실에 모였다. 그땐 단순히 김영민의 솔로 프로젝트에 김현태가 기타를 쳐 주러 온 것뿐이었다. 그 전까지 김현태는 예전에 하던 밴드를 그만두고 자신의 작은 방에서 기타로 노래를 만들고 있었다. 김영민 역시 늘 하던 대로 혼자만의 전자음악 작업을 이어가고 있었다. 그렇게 두 사람은 각자가 갈 방향으로 평행하게 걸어갈 뿐이었다. 그런 두 사람이었기에, 작업실에서 처음 만난 날만 해도 그들은 알지 못했다. 두 사람의 접점이 일으킨 작은 스파크가 이 한 장의 앨범으로 귀결될 거란 사실을. 프로듀서 김영민은 키보드와 신디사이저를 다루며 전반적인 곡 구성을 책임지고 있다. 골드문트의 풍성한 사운드는 전적으로 그의 손 안에서 빚어진다. 거기에 기타/보컬 김현태가 그만의 정서를 담은 멜로디와 가사로 노래에 색을 덧칠한다. 이 과정은 절묘하게도 팀명의 모티브가 된 헤르만 헤세의 소설 ‘나르치스와 골드문트’를 떠올리게 한다. 이성을 상징하는 소년 나르치스와 감정을 상징하는 소년 골드문트의 인연은 김영민과 김현태가 만들어 내는 하모니를 닮았다.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;- Melon, 앨범 소개란&lt;/p&gt;
&lt;br /&gt;
&lt;h3 id=&quot;soundcloud&quot;&gt;Soundcloud&lt;/h3&gt;
&lt;br /&gt;
&lt;iframe width=&quot;100%&quot; scrolling=&quot;no&quot; frameborder=&quot;no&quot; src=&quot;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/139348413&amp;amp;auto_play=false&amp;amp;hide_related=false&amp;amp;show_comments=true&amp;amp;show_user=true&amp;amp;show_reposts=false&amp;amp;visual=true&quot;&gt;&lt;/iframe&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 id=&quot;in-game&quot;&gt;In game&lt;/h3&gt;
&lt;br /&gt;
&lt;center&gt;&lt;iframe src=&quot;https://www.youtube.com/embed/amtY1omIetA&quot; width=&quot;853&quot; height=&quot;480&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;&lt;/center&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3 id=&quot;lyric&quot;&gt;Lyric&lt;/h3&gt;
&lt;br /&gt;
&lt;p&gt;나 엄청 중요한 순간이야&lt;/p&gt;&lt;p&gt;입술을 살짝 깨물고 다가가&lt;/p&gt;&lt;p&gt;화려하진 않아도 난 딱 보여&lt;/p&gt;&lt;p&gt;멀리서부터 이미 빛나고 있어&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;저기 잠깐만 어디 가는 거야&lt;/p&gt;&lt;p&gt;잠시 나와 5분만 이야기해&lt;/p&gt;&lt;p&gt;그댄 바로 내가 바라던 이상형&lt;/p&gt;&lt;p&gt;나 지금 그댈 잡아야겠어요 당장&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그대가 어디의 누구라도 좋아&lt;/p&gt;&lt;p&gt;오늘 하루 Dance with me tonight&lt;/p&gt;&lt;p&gt;내일도 모레도 All right?&lt;/p&gt;&lt;p&gt;그대가 이 세상 누구보다 좋아&lt;/p&gt;&lt;p&gt;오늘 하루 Dance with me tonight&lt;/p&gt;&lt;p&gt;24시간&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이런 말 하는 거 오늘이 처음이야&lt;/p&gt;&lt;p&gt;거짓말이 아냐 저기 잠깐 내 말을 들어봐&lt;/p&gt;&lt;p&gt;지금 내 손을 잡아요 어디든 함께할께&lt;/p&gt;&lt;p&gt;이렇게 보낼순 없어 나와 함께 있어줘요&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;하루가 멀다 너에게 전활 걸어&lt;/p&gt;&lt;p&gt;귀찮을 정도로 막 연락해&lt;/p&gt;&lt;p&gt;뭐가 좋은지 자꾸 웃음이 나와&lt;/p&gt;&lt;p&gt;내 생각 안 한대도 그냥 좋아&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;밀고 당기라는데 난 정말 모르겠어&lt;/p&gt;&lt;p&gt;누가 누굴 밀라는 거야&lt;/p&gt;&lt;p&gt;목소리를 듣고 눈을 바라보고 싶어&lt;/p&gt;&lt;p&gt;나 좀 말리지 마 너네는 진짜 몰라&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그대가 어디의 누구라도 좋아&lt;/p&gt;&lt;p&gt;오늘 하루 Dance with me tonight&lt;/p&gt;&lt;p&gt;내일도 모레도 All right?&lt;/p&gt;&lt;p&gt;그대가 이 세상 누구보다 좋아&lt;/p&gt;&lt;p&gt;오늘 하루 Dance with me tonight&lt;/p&gt;&lt;p&gt;24시간&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;나 어제 꿈에선 그대가 떠나 버렸어&lt;/p&gt;&lt;p&gt;그렇게 웃다가도 이렇게 눈물이 나&lt;/p&gt;&lt;p&gt;그런 일은 절대 있어선 안 돼&lt;/p&gt;&lt;p&gt;그댄 계속 내 옆에 있어야 해&lt;/p&gt;&lt;p&gt;그대는 이런 내 맘 알고 있을까&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/60</guid>
      <comments>https://oztheme.tistory.com/60#entry60comment</comments>
      <pubDate>Sun, 18 Oct 2015 14:23:57 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151017-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/58</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21644B4956221DC92A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21644B4956221DC92A&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/17/15 (Sat)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;BlacklistProvider : Make provider single user only (android_packages_providers_TelephonyProvider)&lt;br /&gt;ZenMode : Remove config_setZenModeWhenSilentModeOn (android_frameworks_base)&lt;br /&gt;Revert &quot;Modify SILENT profile to restrict notification sound&quot; (android_frameworks_base)&lt;br /&gt;Revert &quot;ZenModeHelper: To pass android.media.cts.AudioManagerTest.&quot; (android_frameworks_base)&lt;br /&gt;Fix NPE causing crash when copying message with no body. (android_packages_apps_Mms-caf)&lt;br /&gt;Add interface for checking spam reporting provider (android_packages_apps_ContactsCommon)&lt;br /&gt;sepolicy: qcom: Remove duplicate entry (android_vendor_cm)&lt;br /&gt;bootchart: call 'bootchart_init' after remount_all is done (android_system_core)&lt;br /&gt;Update strings (android_packages_apps_UnifiedEmailNext-resources)&lt;br /&gt;Update strings (android_packages_apps_EmailNext-resources)&lt;br /&gt;Update strings (android_packages_apps_CalendarNext-resources)&lt;br /&gt;Fix network stats logspam. (android_frameworks_base)&lt;br /&gt;SystemUI: Remove duplicated permission (android_frameworks_base)&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 17일 (토)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;BlacklistProvider: 단일 유저용 프로바이더 제공(android_packages_providers_TelephonyProvider)&lt;/p&gt;&lt;p&gt;ZenMode: config_setZenModeWhenSilentModeOn 제거 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;되돌림 &quot;알림 사운드를 제한하는 무음 프로필 수정&quot; (android_frameworks_base)&lt;/p&gt;&lt;p&gt;되돌림 &quot;ZenModeHelper: android.media.cts.AudioManager.Test 통과&quot; (android_frameworks_base)&lt;/p&gt;&lt;p&gt;수신자가 없을 때 메시지를 복사하는 도중 NPE와 충돌하는 원인 수정 (android_packages_apps_Mms-caf)&lt;/p&gt;&lt;p&gt;스팸 보고 프로바이더 인터페이스 추가 (android_packages_apps_ContactsCommon)&lt;/p&gt;&lt;p&gt;sepolicy:qcom : 복사 영역 제거 (android_vendor_cm)&lt;/p&gt;&lt;p&gt;bootchart: remount_all이 완료되면&amp;nbsp;bootchart_init 호출 (android_system_core)&lt;/p&gt;&lt;p&gt;문자열 업데이트 (android_packages_apps_UnifiedEmailNext-resources)&lt;/p&gt;&lt;p&gt;문자열 업데이트 (android_packages_apps_EmailNext-resources)&lt;/p&gt;&lt;p&gt;문자열 업데이트 (android_packages_apps_CalendarNext-resources)&lt;/p&gt;&lt;p&gt;네트워크 상태 로그스팸 해결 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;SystemUI: 중복된 권한 제거 (android_frameworks_base)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/58</guid>
      <comments>https://oztheme.tistory.com/58#entry58comment</comments>
      <pubDate>Sat, 17 Oct 2015 22:03:38 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151016-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/56</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2754D94A56204F100E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2754D94A56204F100E&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/16/15&amp;nbsp;(Fri)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;SystemUI: attach a queue to media player notifications (android_frameworks_base)&lt;/p&gt;&lt;p&gt;CMSettings: add notification play queue setting (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;Secure file moving issue fix (android_packages_apps_CMFileManager)&lt;/p&gt;&lt;p&gt;Disable default blending when drawing color rect (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Trebuchet : Switch to LOGD instead of isLoggable (android_packages_apps_Trebuchet)&lt;/p&gt;&lt;p&gt;Fix NPE on SIM hot swap. (android_frameworks_opt_telephony)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 16일 (금)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;SystemUI: 미디어 플레이어 알림에 큐 붙임 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;CMSettings: 알람(재생 큐)&amp;nbsp;설정 추가 (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;보안파일 이동 관련 이슈 해결 (android_packages_apps_CMFileManager)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Color Rectangle을 그릴 때 기본 혼합 사용 안함 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Trebuchet : LOGD에서 isLoggable로 로그 방식 전환 (android_packages_apps_Trebuchet)&lt;/p&gt;&lt;p&gt;SIM hot swap에 NPE 해결 (android_frameworks_opt_telephony)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;cm-12.1-151016-NIGHTLY-changelog (한글)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/56</guid>
      <comments>https://oztheme.tistory.com/56#entry56comment</comments>
      <pubDate>Fri, 16 Oct 2015 15:00:07 +0900</pubDate>
    </item>
    <item>
      <title>[G Pro] CM12.1 화면 깜빡임, NFC 패치 (11월 9일)</title>
      <link>https://oztheme.tistory.com/57</link>
      <description>&lt;h1 id=&quot;[g-pro]-cm12.1-화면-깜빡임,-nfc-패치-(11월-9일)&quot;&gt;&lt;a name=&quot;[g-pro]-cm12.1-화면-깜빡임,-nfc-패치-(11월-9일)&quot; href=&quot;#[g-pro]-cm12.1-화면-깜빡임,-nfc-패치-(11월-9일)&quot;&gt;&lt;/a&gt;[G Pro] CM12.1 화면 깜빡임, NFC 패치 (11월 9일)&lt;/h1&gt;
&lt;h1 id=&quot;cm12.1-fix-display-flickering,-nfc-for-f240x-(9.nov)&quot;&gt;&lt;a name=&quot;cm12.1-fix-display-flickering,-nfc-for-f240x-(9.nov)&quot; href=&quot;#cm12.1-fix-display-flickering,-nfc-for-f240x-(9.nov)&quot;&gt;&lt;/a&gt;CM12.1 Fix Display Flickering, NFC for f240x (9.Nov)&lt;/h1&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;주의&quot;&gt;&lt;a name=&quot;주의&quot; href=&quot;#주의&quot;&gt;&lt;/a&gt;주의&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;이 패치에 의한 파일, 시스템의 손상과 하드브릭(벽돌)에 관하여 필자는 책임을 지지 않습니다.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;백업을 생활화합시다.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;패치-내용&quot;&gt;&lt;a name=&quot;패치-내용&quot; href=&quot;#패치-내용&quot;&gt;&lt;/a&gt;패치 내용&lt;/h2&gt;
&lt;blockquote&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;/system/vendor/firmware/libpn544_fw.so 제거&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;&lt;p&gt;build.prop에 아래와 같은 문구 추가&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; 1. debug.composition.type=gpu
 2. debug.sf.hw=1
 3. debug.egl.hw=1
 4. debug.mdpcomp.maxlayer=0
 5. dev.pm.gpu_samplingrate=1
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;변경사항&quot;&gt;&lt;a name=&quot;변경사항&quot; href=&quot;#변경사항&quot;&gt;&lt;/a&gt;변경사항&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt; 15.11.09 (9.Nov)&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;NFC 폴더 제거 → libpn544_fw.so파일 제거로 변경 (Thanx to 그냥아칸)&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt; 15.10.16 (16.Oct)&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;NFC 폴더 통째로 제거 (remove /system/app/Nfc)&lt;/li&gt;&lt;li&gt;Display Flicker (화면 깜빡임) 현상 제거를 위한 build.prop 구문 추가.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;thanx-to&quot;&gt;&lt;a name=&quot;thanx-to&quot; href=&quot;#thanx-to&quot;&gt;&lt;/a&gt;Thanx to&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;그냥아칸@&lt;a href=&quot;http://develoid.com&quot;&gt;디벨로이드(Develoid)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;용사망@&lt;a href=&quot;http://cafe.naver.com/opworld&quot;&gt;디바이스월드(LGDeviceWorld)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h2 id=&quot;다운로드&quot;&gt;&lt;a name=&quot;다운로드&quot; href=&quot;#다운로드&quot;&gt;&lt;/a&gt;다운로드&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/265E393A564012110D&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;patch-151109-display-flicker-nfc-f240-v2.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;(15.11.09)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>개발/Android</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/57</guid>
      <comments>https://oztheme.tistory.com/57#entry57comment</comments>
      <pubDate>Fri, 16 Oct 2015 14:40:11 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151015-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/54</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21441349561F105D17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21441349561F105D17&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/14/15 (Thu)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;Improve several permission description Strings. (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;Fix rotation tile animation (android_frameworks_base)&lt;/p&gt;&lt;p&gt;SystemUI: Update screenshot notification icon to material (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Update action_liked string (android_packages_apps_UnifiedEmailNext-resources)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 15일 (목)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;여러 권한 설명 문자열 개선 (cm_platform_sdk)&lt;/p&gt;&lt;p&gt;자동회전 타일 애니메이션 수정 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;시스템 UI: 스크린샷 알림 아이콘 머터리얼로 변경 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;action_liked 문자열 추가 (android_packages_apps_UnifiedEmailNext-resources)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/54</guid>
      <comments>https://oztheme.tistory.com/54#entry54comment</comments>
      <pubDate>Thu, 15 Oct 2015 17:25:40 +0900</pubDate>
    </item>
    <item>
      <title>Fuse란?</title>
      <link>https://oztheme.tistory.com/55</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;864&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border:none;border-collapse:collapse;;font-family:돋움;font-size:12px&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 864px; height: 149px; border: 1px solid rgb(204, 204, 204); background-color: rgb(93, 93, 93);&quot;&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 133px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/221AD746561F2F0D03&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F221AD746561F2F0D03&quot; width=&quot;133&quot; height=&quot;59&quot; filename=&quot;logo_white.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;이 문서는 마크다운 에디터인 하루패드(&lt;a href=&quot;http://pad.haroopress.com/&quot;&gt;HarooPad&lt;/a&gt;)를 이용하여 작성되었습니다.&lt;br /&gt;문서가 심히 나무위키스럽다는건 함정.&lt;/p&gt;
&lt;hr class=&quot;section&quot;&gt;
&lt;p&gt;&lt;b&gt;지속적으로 업데이트할 예정입니다.&lt;/b&gt;&lt;/p&gt;
&lt;h1 id=&quot;fuse![](https://www.fusetools.com/assets/images/logo_white.png)&quot;&gt;&lt;br /&gt;&lt;a name=&quot;fuse![](https://www.fusetools.com/assets/images/logo_white.png)&quot; href=&quot;#fuse![](https://www.fusetools.com/assets/images/logo_white.png)&quot;&gt;&lt;/a&gt;&lt;/h1&gt;&lt;h2 id=&quot;1.-fuse란-무엇인가?&quot;&gt;&lt;a name=&quot;1.-fuse란-무엇인가?&quot; href=&quot;#1.-fuse란-무엇인가?&quot;&gt;&lt;/a&gt;Fuse&lt;/h2&gt;
&lt;br /&gt;
&lt;h3 id=&quot;fuse는&quot;&gt;Fuse는&lt;/h3&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;북유럽 노르웨이 오슬로에 본사(대표 안더슨 라센)를, 미국 팔로알토에 지사(대표 임수미)를 둔 ‘퓨즈’라는 기업의 크로스 플랫폼 개발도구이다.&lt;/p&gt;
&lt;p&gt;화려한 시각효과를 필두로 하여 모바일에선 Android와 iOS 모두를 지원하는 네이티브 앱을 단일 코드인 Uno (C#에서 .Net을 제거) 개발하며 디자이너와의 유기적인 협업을 달성할 수 있다는게 제작사의 설명이다.&lt;/p&gt;
&lt;p&gt;모바일 및 데스크톱 빌드를 모두 지원하며, 현재 빌드, 실행이 가능한 타겟은 .Net EXE, Android, iOS, MSVC12, CMake(OSX), WebGL이 있다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h3 id=&quot;특징&quot;&gt;&lt;a name=&quot;특징&quot; href=&quot;#특징&quot;&gt;&lt;/a&gt;특징&lt;/h3&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;코드 에디터로는 현재 Sublime Text 3를 사용하고있다. (아직 자체 IDE 제작은 없는 듯 하다.)&lt;/p&gt;
&lt;hr class=&quot;section&quot;&gt;
&lt;ul&gt;
&lt;li&gt;하나의 언어(Uno)로 여러 운영체제의 앱을 개발할 수 있다.&lt;/li&gt;&lt;li&gt;필요하다면 자바스크립트(JavaScript)를 사용할 수 있으며, X코드로 만든 iOS 앱이나 ADT로 만든 안드로이드 앱과 같은 수준의 앱을 만들수있다.&lt;/li&gt;&lt;li&gt;모바일 플랫폼 기반의 네이티브로 직접 번역되는 다양한 코드 라이브러리가 있기 때문에 개발중 플랫폼에서 즉시 사용가능한 요소들을 갖추고있다.&lt;/li&gt;&lt;li&gt;타겟 플랫폼에 대한 소스코드를 하나로 관리할 수 있다. 별 문제가 되지 않아 보이지만 OS 버전이나 해상도 등을 고려한다면 굉장한 이점이다.&lt;/li&gt;&lt;li&gt;OpenGL ES 표준을 사용, 퍼포먼스와 호환성문제를 해결.&lt;/li&gt;&lt;/ul&gt;
&lt;hr class=&quot;section&quot;&gt;
&lt;br /&gt;
&lt;h3 id=&quot;지금까지의-행보&quot;&gt;지금까지의 행보, 방향성&lt;/h3&gt;&lt;div&gt;업데이트 예정&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;h2 id=&quot;2.-아직은&quot;&gt;&lt;a name=&quot;2.-아직은&quot; href=&quot;#2.-아직은&quot;&gt;&lt;/a&gt;아직은&lt;/h2&gt;
&lt;p&gt;클로즈 베타였다가 얼마전 오픈베타로 전환되었다. 그렇다 보니까 아직은 아는 사람도 많이 없다는게 문제다.&lt;/p&gt;
&lt;p&gt;현재 페이스북이나 네이버 카페 등 SNS를 통해 커뮤니티가 열리고 있다. 아직 자료는 많지 않지만 가입하여 여러 정보를 받아보는 것도 나쁘지않다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;페이스북 퓨즈(Fuse) 한국 사용자 그룹 :&amp;nbsp;&lt;a href=&quot;https://www.facebook.com/groups/fusetools/?&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;https://www.facebook.com/groups/fusetools/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;네이버 카페&amp;nbsp;퓨즈(Fuse) 한국 사용자 그룹&amp;nbsp;:&amp;nbsp;&lt;a href=&quot;http://cafe.naver.com/fusetools&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://cafe.naver.com/fusetools&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;페이스북 퓨즈 스터디 그룹 :&amp;nbsp;&lt;a href=&quot;https://www.facebook.com/groups/fusestudy/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;https://www.facebook.com/groups/fusestudy/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>소식</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/55</guid>
      <comments>https://oztheme.tistory.com/55#entry55comment</comments>
      <pubDate>Thu, 15 Oct 2015 13:55:49 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151014-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/47</link>
      <description>&lt;p&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/251DAF46561F64E32D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F251DAF46561F64E32D&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/h1&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Oct/14/15 (Wed)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;Revert &quot;Don't allow deleting last remaining fingerprint&quot; (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;Improve fingerprint management activity UX. (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;Services : Ensure proximity check is taken into consideration (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;Settings: use consistent behavior after forgetting networks (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;Revert &quot;Settings: clear dialog states when forgetting network&quot; (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;Ensure contact preloading is dependent on regional configuration (android_packages_providers_ContactsProvider)&lt;/p&gt;
&lt;p&gt;build: Generalize kernel DTB path (android_build)&lt;/p&gt;
&lt;p&gt;generate_extra_images: Look for 3.10 dtbs (android_build)&lt;/p&gt;
&lt;p&gt;Prevent NPE collecting title, which was preventing the print action. Use Uri for title and timestamp for print title. (android_packages_apps_CMFileManager)&lt;/p&gt;
&lt;p&gt;Switch SetupWizard to use CMSettings for settings unrelated to bootclasspath (android_packages_apps_SetupWizard)&lt;/p&gt;
&lt;p&gt;Switch WhisperPush to use CMSettings (android_external_whispersystems_WhisperPush)&lt;/p&gt;
&lt;p&gt;Switch to use CMSettings for settings not involved in bootclasspath (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;Switch packages and services in frameworks not on the bootclasspath to use CMSettings (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;FingerprintService: synchronize access to clients (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;Fix horrible warning on every systemui startup. (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;Fix huge bounce-back in ListView when double-flinging (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;libbt-vendor: Fix Samsung patchfile detection. (android_hardware_broadcom_libbt)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h3&gt;15년 10월 14일 (수)&lt;/h3&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;되돌림 &quot;마지막 남은 지문을 삭제하지 않음&quot; (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;지문관리 액티비티 UX 개선 (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;서비스: 근접성 검사 확인 (android_framework_base)&lt;/p&gt;
&lt;p&gt;설정: 네트워크 끊긴 후 일관된 동작 사용 (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;되돌림 &quot;설정: 네트워크가 연결되지 않을 때 대화 창 제거 (android_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;contact preloading은 지역(국가) 설정에 의존함 (android_packages_providers_ContactsProvider)&lt;/p&gt;
&lt;p&gt;빌드: 커널 DTB 경로 일반화 (android_build)&lt;/p&gt;
&lt;p&gt;추가 이미지 생성: 3.10 dtbs 찾도록 수정 (android_build)&lt;/p&gt;
&lt;p&gt;인쇄작업시 NPE의 제목 수집 방지, 인쇄 제목과, Uri 사용. (android_packages_apps_CMFileManager)&lt;/p&gt;
&lt;p&gt;bootclasspath와 관련없는 설정을 위해 SetupWizard 대신 CMSettings 사용 (android_packages_apps_SetupWizard)&lt;/p&gt;
&lt;p&gt;WhisperPush 대신 CMSettings 사용 (android_external_whispersystems_WhisperPush)&lt;/p&gt;
&lt;p&gt;bootclasspath에 관여하지 않는 설정을 위해 CMSettings 사용(anroid_packages_apps_Settings)&lt;/p&gt;
&lt;p&gt;bootclasspath에는 없는 프레임워크의 패키지와 서비스는 CMSettings 사용 (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;FingerPrintService: 클라이언트에 대한 접근(액세스) 동기화 (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;SystemUI 시작시 발생하는 경고 해결 (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;double-flinging시 리스트뷰에서의 바운스백 해결 (android_frameworks_base)&lt;/p&gt;
&lt;p&gt;libbt-vendor: 삼성 패치파일 감지 해결 (android_hardware_broadcom_libbt)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Download : &lt;b&gt;&lt;a class=&quot;tx-link&quot; target=&quot;_blank&quot; href=&quot;http://download.cyanogenmod.org/&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/47</guid>
      <comments>https://oztheme.tistory.com/47#entry47comment</comments>
      <pubDate>Wed, 14 Oct 2015 14:43:57 +0900</pubDate>
    </item>
    <item>
      <title>[안드로이드] 데이터도, 와이파이도 없을땐 역테더링을 해보자.</title>
      <link>https://oztheme.tistory.com/48</link>
      <description>&lt;h1&gt;&lt;div&gt;스마트폰/태블릿의 모바일 데이터도 없고, 주변엔 와이파이도 없다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;충격이다.&lt;/div&gt;&lt;/h1&gt;&lt;div&gt;SNS, 스트리밍 미디어, 모바일 게임 모든 것이 끊길 것이다. 잠깐이나마 세상과 단절된 느낌도 받을 수 있을 것이라 생각될것이다. 이럴 때 우리는 한줄기 희망에 의지해본다. 오늘은 이 난관을 헤쳐나가기 위한 방법, 역테더링(Reverse Tethering)을 소개해보려고 한다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;일단 테더링(Tethering)은 스마트폰을 이용해 데이터 네트워크를 나누어주는 기능으로 와이파이를 이용한 '모바일 핫스팟', 블루투스를 이용한 네트워크 공유, USB를 이용한 USB 테더링까지의 개념을 모두 포함하고있다. 그럼 역테더링(Reverse Tethering)은 테더링의 반대 개념, 즉 자신이 데이터 네트워크를 받아온다고 볼 수 있다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 536px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25015850561DBEDA0C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25015850561DBEDA0C&quot; width=&quot;536&quot; height=&quot;358&quot; filename=&quot;제목 없는 그림.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;span class=&quot;cap1&quot; style=&quot;display: block; max-width:100%; &quot;&gt;출처 http://www.dogdrip.net/?mid=doc&amp;category=22526322&amp;m=1&amp;document_srl=36972575&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;안드로이드 스마트폰이 처음 나오면서부터 역테더링에 관한 내용들은 계속 나왔으며, 터미널 등을 이용한 방법이 가장 많이 이용되었다. 하지만 이것의 가장 큰 문제는 설정 과정이 복잡하고, 무엇보다 재부팅할 때마다 설정해주어야 했다는 귀찮음이 존재한다는 것이다.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;게다가 루팅을 해야한다는 전제는 예나 지금이나 존재하다보니 어떻게든 써야되는 용자(…)들을 제외하고는 효율적이지 않다. 게다가 PC가 있는데 굳이 모바일 기기를 쓸 필요까란 생각도 들지만 필자의 경우 원래 루팅유저에 모바일 게임 하이파이브(High5), 아이돌마스터 신데렐라 걸즈 유저이기 때문에…. 각설하겠다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;그래서 이거 어떻게 해야하나?!&lt;p&gt;&lt;/p&gt;&lt;/h3&gt;
&lt;p&gt;사용할 것은 XDA 포럼에 있는 &lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=1371345&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Android Reverse Tethering&lt;/a&gt;이다. 윈도에서만 실행되며 리눅스와 맥 OSX는 지원하지 않는다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;'시작하기 전 해야할 것'이 원문 스레드에서는 너무 많아 간략하게 써보겠다.&lt;/p&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;루팅&lt;/li&gt;&lt;li&gt;USB 디버깅 허용&lt;/li&gt;&lt;li&gt;USB 드라이버 설치&lt;/li&gt;&lt;li&gt;ADB&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;딱 4가지다. 이것만 있으면 된다. 필자는 저 4가지만 해놓은 상태에서 다른 설명도 없이 프로그램부터 켰다. 괜찮다. 걱정하지 말자.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;gt; XDA 포럼에 있는 스레드(&lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=1371345&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://forum.xda-developers.com/showthread.php?t=1371345&lt;/a&gt;)에서 &lt;a href=&quot;http://forum.xda-developers.com/attachment.php?attachmentid=2510470&amp;amp;d=1389514730&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;ReverseTethering_3.19.zip&lt;/a&gt;을 다운받아 압축을 푼다. 그리고 AnroidTool.exe를 실행한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 541px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2538EA3E561DC0CA25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2538EA3E561DC0CA25&quot; width=&quot;541&quot; height=&quot;497&quot; filename=&quot;제목 없는 그림1.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;gt; USB 케이블을 꽂고&amp;nbsp;Adb를 이용한 앱 설치가 함께 진행되기 때문에 미리&amp;nbsp;허용해놓는 것이 좋다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 395px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/274FE242561DBFF616&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F274FE242561DBFF616&quot; width=&quot;395&quot; height=&quot;239&quot; filename=&quot;제목 없는 그림3.png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&amp;gt;'Tools' 탭에서 adb.exe파일을 연결해주자. 만약 없다면 다운받아서 같은 폴더에 넣어두는 것을 추천한다.&lt;div&gt;&lt;br /&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 543px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22406B3E561DC0CB21&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22406B3E561DC0CB21&quot; width=&quot;543&quot; height=&quot;500&quot; filename=&quot;제목 없는 그림2.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;gt; 그리고 Connect를 누르면 된다. 끝이다. 복잡한 과정은 모두 앱이 생략했다.&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/48</guid>
      <comments>https://oztheme.tistory.com/48#entry48comment</comments>
      <pubDate>Wed, 14 Oct 2015 12:02:11 +0900</pubDate>
    </item>
    <item>
      <title>LG G 시리즈의 CM12.1 SIM카드 오류 해결!</title>
      <link>https://oztheme.tistory.com/46</link>
      <description>&lt;p&gt;CM12.1에서의 Sim 오류는 많은 G, G Pro 유저들의 애간장을 태우고 많은 이탈자를 발생시키게 했던 주 요인이다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;나는 매번 패치하는 것이 귀찮아 Blisspop으로 도주 했다가 픽스되었다는 체인지로그를 보고 다시 CM으로 돌아왔다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(238, 238, 238); padding: 10px; background-color: rgb(238, 238, 238);&quot;&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 540px; width: 540px; height: 960px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/216D3436561CE75519&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F216D3436561CE75519&quot; width=&quot;540&quot; height=&quot;960&quot; filename=&quot;sc.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 540px; height: 960px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;참고로 이 기기는 G Pro다. G Pad 8.3과 동일한 dpi 273 세팅을 해놓았다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;아아 CM 설정앱에서 오랜만에 내 전화번호를 보는구나 ㅠㅠ&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/46</guid>
      <comments>https://oztheme.tistory.com/46#entry46comment</comments>
      <pubDate>Tue, 13 Oct 2015 20:14:58 +0900</pubDate>
    </item>
    <item>
      <title>Kernel Auditor, 사상 최고의 커널 매니징 앱</title>
      <link>https://oztheme.tistory.com/45</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 300px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/271EC13F561CC4B81E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F271EC13F561CC4B81E&quot; width=&quot;300&quot; height=&quot;300&quot; filename=&quot;수정됨_unnamed.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h1 style=&quot;text-align: center;&quot;&gt;Kernel Auditor&lt;/h1&gt;
&lt;h4 style=&quot;text-align: center;&quot;&gt;by &lt;a href=&quot;http://forum.xda-developers.com/member.php?u=4443334&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;Grarak@XDA&lt;/a&gt;&lt;/h4&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;Kernel Auditor는 기존의 SetCPU와 같은 커널 매니징 앱이다. 작년 12월 처음 나왔으며, 깔끔한 머터리얼 디자인과, 갖가지 기능들을 가지고있어, 기존의 매니징 앱들보다 훨씬 많은 인기를 얻고있다.&amp;nbsp;심지어 대표적인 커스텀 펌웨어&amp;nbsp;CyanogenMod를 기반으로 하는&amp;nbsp;Blisspop은 기반인 CM과 다르게 설정 앱이 아닌 Kernel Auditor에서 &amp;nbsp;처리하고&amp;nbsp;있다. 그리고 이 앱은 &lt;b&gt;오픈소스&lt;/b&gt;다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;필자는 이 앱을 접하고나서 기존에 사용하던 Flashify, Buildprop Editor, Antutu CPU Master 등의 앱들을 모두 제거하였다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h3&gt; 기능&lt;/h3&gt;&lt;div&gt;단순한 CPU 조절 뿐만 아니라 전반적인 커널과 관련된 모든 것에 관여하고있다. 아래는 Kernel Auditor의 &lt;a href=&quot;http://forum.xda-developers.com/android/apps-games/app-kernel-adiutor-t2986129&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;공식 스레드&lt;/a&gt;에서 발췌한 기능들이다.&lt;/div&gt;&lt;ul style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;CPU 클럭과 가버너 조절&lt;/li&gt;&lt;li&gt;CPU 전압 조절&lt;/li&gt;&lt;li&gt;CPU 핫플러그 설정&lt;/li&gt;&lt;li&gt;GPU 클럭과 가버너 조절&lt;/li&gt;&lt;li&gt;디스플레이 색상 조절 (RGB값)&lt;/li&gt;&lt;li&gt;Wake Control (DoubleTab2Wake, Slide2Wake)&lt;/li&gt;&lt;li&gt;사운드 조절 (Faux Sound)&lt;/li&gt;&lt;li&gt;배터리 (Fast Charge 설정)&lt;/li&gt;&lt;li&gt;I/O 스케줄러 변경&lt;/li&gt;&lt;li&gt;Kernel Same-page&amp;nbsp;Merging (KSM) 설정&lt;/li&gt;&lt;li&gt;Low Memory Killer 설정&lt;/li&gt;&lt;li&gt;가상메모리 설정&lt;/li&gt;&lt;li&gt;빌드프롭(build.prop) 에디터&lt;/li&gt;&lt;li&gt;프로필 저장&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;공식 스레드에는 없었지만 필자가 직접 LG Optimus G Pro (CM12.1), KT Tech Take LTE (CM10)에서 사용해본 결과 아래와 같은 추가기능들을 더 볼 수 있었다.&lt;/div&gt;&lt;ul style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;엔트로피 설정&lt;/li&gt;&lt;li&gt;진동 세기 설정&lt;/li&gt;&lt;li&gt;TCP 알고리즘&lt;/li&gt;&lt;li&gt;Flashify와 같은 img 플래싱 기능&lt;/li&gt;&lt;li&gt;리커버리 스크립트를 이용한 플래싱 (CWM, TWRP 지원)&lt;/li&gt;&lt;li&gt;자체 설정값 백업, 복원 기능&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;물론 자신이 사용하고 있는 커널이 어떤 기능을 가지고있느냐에 따라 보여지는 메뉴도, 설정값도 달라질 것이다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h3&gt;디자인&lt;/h3&gt;&lt;div&gt;머터리얼 디자인을 채택하였으며, 기본 설정은 밝은 테마다. 설정에서 어두운 테마로 변경 할 수 있다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 300px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2372A73E561CDFB41C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2372A73E561CDFB41C&quot; width=&quot;300&quot; height=&quot;533&quot; filename=&quot;수정됨_unnamed (2).png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 300px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2703913E561CDFB50F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2703913E561CDFB50F&quot; width=&quot;300&quot; height=&quot;533&quot; filename=&quot;수정됨_unnamed (3).png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 300px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23066B45561CE06903&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F23066B45561CE06903&quot; width=&quot;300&quot; height=&quot;533&quot; filename=&quot;수정됨_unnamed (4).png&quot; filemime=&quot;image/png&quot;/&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;h3&gt;다운로드&lt;/h3&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;공식 스레드 :&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://forum.xda-developers.com/android/apps-games/app-kernel-adiutor-t2986129&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot; style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;http://forum.xda-developers.com/android/apps-games/app-kernel-adiutor-t2986129&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;구글 플레이 : &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.grarak.kerneladiutor&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;https://play.google.com/store/apps/details?id=com.grarak.kerneladiutor&lt;/a&gt;&lt;/p&gt;&lt;p&gt;오픈소스 프로젝트(Github) :&amp;nbsp;&lt;a href=&quot;https://github.com/Grarak/KernelAdiutor&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;https://github.com/Grarak/KernelAdiutor&lt;/a&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <category>APP</category>
      <category>Kernel Auditor</category>
      <category>XDA</category>
      <category>커널</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/45</guid>
      <comments>https://oztheme.tistory.com/45#entry45comment</comments>
      <pubDate>Tue, 13 Oct 2015 19:56:09 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151013-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/44</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img id=&quot;tx_entry_58772_&quot; class=&quot;txc-image&quot; src=&quot;https://t1.daumcdn.net/cfile/tistory/27017C4B561C55022C&quot; width=&quot;633&quot; height=&quot;455&quot; style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h1&gt;&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/h1&gt;&lt;p&gt;&lt;b style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Oct/13/15 (Tue)&lt;/b&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;Settings: clear dialog states when forgetting network (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;bionic: add electric fence into memory debug list, use code 15. (android_bionic)&lt;/p&gt;&lt;p&gt;contributors: Add Oppo R7 and R7 Plus (android_vendor_cm)&lt;/p&gt;&lt;p&gt;Fixed issues with QuickMessagePopup on lock screen (android_packages_apps_Mms-caf)&lt;/p&gt;&lt;p&gt;Don't accidently clear TRANSPARENT_VERTICAL_NAV (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Unbreak build breakage when NO overlay is present (android_packages_providers_ContactsProvider)&lt;/p&gt;&lt;p&gt;preloaded_contacts schema moved, to unbreak builds (android_packages_providers_ContactsProvider)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;15년 10월 13일 (화)&lt;/b&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px;&quot;&gt;&lt;p&gt;설정: 네트워크가 연결되지 않을 때&amp;nbsp;대화 창 제거 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;바이오닉: 코드 15를 이용해 메모리 디버깅 목록에 Electric Fence 추가 (android_bionic)&lt;/p&gt;&lt;p&gt;참여자: Oppo R7, R7 Plus 추가 (android_vendor_cm)&lt;/p&gt;&lt;p&gt;잠금화면에서의 QuickMessagePopup에 대한 이슈 해결 (android_packages_apps_Mms-caf)&lt;/p&gt;&lt;p&gt;명확하지 않은 TRANSPARENT_VERTICAL_NAV 수행 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;오버레이가 존재하지 않는 경우 unbreak build 파손&amp;nbsp;(android_packages_providers_ContactsProvider)&lt;/p&gt;&lt;p&gt;preloaded_contacts 스키마 unbreak build로 이동 (android_packages_providers_ContactsProvider)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Download :&amp;nbsp;&lt;b&gt;&lt;a href=&quot;http://download.cyanogenmod.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/44</guid>
      <comments>https://oztheme.tistory.com/44#entry44comment</comments>
      <pubDate>Tue, 13 Oct 2015 14:44:03 +0900</pubDate>
    </item>
    <item>
      <title>cm-12.1-151012-NIGHTLY-changelog (한글)</title>
      <link>https://oztheme.tistory.com/42</link>
      <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 633px; font-size: 9pt; line-height: 1.5;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27017C4B561C55022C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27017C4B561C55022C&quot; width=&quot;633&quot; height=&quot;455&quot; filename=&quot;CYanogenMod.PNG&quot; filemime=&quot;image/jpeg&quot; style=&quot;font-size: 9pt; line-height: 1.5;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;h1&gt;&lt;p&gt;CyanogenMod 12.1 NIGHTLY Korean Changelog (한글)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/h1&gt;&lt;h2&gt;&lt;b style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Oct/12/15 (Mon)&lt;/b&gt;&lt;/h2&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p&gt;LEDs Brightness: Add the libhardware comment indications (android_hardware_libhardware)&lt;/p&gt;&lt;p&gt;Multiple LEDs [2/3]: Illumination Bars support (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;Multiple LEDs [3/3]: Illumination Bars support (android_frameworks_base)&lt;/p&gt;&lt;p&gt;Multiple LEDs [1/3]: Illumination Bars support (android_hardware_libhardware)&lt;/p&gt;&lt;p&gt;gello: fix padding and text color for incognito (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;gello: update refresh icon (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;gello: update strings (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;gello: make reader/offline UI consistent (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;gello: fix tabs glitches (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;gello: rename bookmarks to favorites (android_packages_apps_Gello)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;15년 10월 12일 (월)&lt;/b&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p&gt;LED 밝기: 하드웨어 라이브러리에 주석 추가&lt;/p&gt;&lt;p&gt;다중 LED [2/3]: 일루미네이션 바 지원 (android_packages_apps_Settings)&lt;/p&gt;&lt;p&gt;다중 LED [3/3]: 일루미네이션 바 지원 (android_frameworks_base)&lt;/p&gt;&lt;p&gt;다중 LED [1/3]: 일루미네이션 바 지원 (android_hardware_libhardware)&lt;/p&gt;&lt;p&gt;젤로(gello): 시크릿 모드에서의 패딩값과 텍스트 컬러 수정 (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;젤로(gello): 새로고침 아이콘 업데이트 (android_packages_apps_Gello)&amp;nbsp;&lt;/p&gt;&lt;p&gt;젤로(gello): 문자열 업데이트 (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;젤로(gello): 리더/오프라인 UI 일관성있게 만듬 (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;젤로(gello): 탭 오류 수정 (android_packages_apps_Gello)&lt;/p&gt;&lt;p&gt;젤로(gello): 북마크를 즐겨찾기로 변경 (android_packages_apps_Gello)&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Download :&amp;nbsp;&lt;b&gt;&lt;a href=&quot;http://download.cyanogenmod.org/&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://download.cyanogenmod.org/&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Gapps :&lt;b&gt;&amp;nbsp;&lt;a href=&quot;http://opengapps.org&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://opengapps.org&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/42</guid>
      <comments>https://oztheme.tistory.com/42#entry42comment</comments>
      <pubDate>Tue, 13 Oct 2015 10:15:24 +0900</pubDate>
    </item>
    <item>
      <title>[ADB] 연결되어있는 기기의 상태가 offline이라면</title>
      <link>https://oztheme.tistory.com/41</link>
      <description>&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px none rgb(0, 0, 0); padding: 10px; background-color: rgb(0, 0, 0);&quot;&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(255, 255, 255); font-family: Terminal;&quot;&gt;C:\Users\DesignOZ&amp;gt;adb devices&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(255, 255, 255); font-family: Terminal;&quot;&gt;emulator-5555&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; color: rgb(255, 255, 255); font-family: Terminal;&quot;&gt;	&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 255, 255); font-family: Terminal;&quot;&gt;offline&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;가끔 이렇게 유저들의 마음을 쥐락펴락하게 만듭니다. &lt;strike&gt;연결이 되어있는데 왜 연결되어있다고 말을 못하니...&lt;/strike&gt;&lt;/p&gt;&lt;p&gt;&lt;strike&gt;&lt;br /&gt;&lt;/strike&gt;&lt;/p&gt;&lt;p&gt;기기를 재부팅 하는 방법도 있지만 ADB를 껐다 키는게 아무래도 더 빠르겠죠. 물론 창을 껐다 킨다고 해결된다면 이 글은 쓰지도 않았을겁니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;cmd 또는 배쉬를 열고, 아래와 같은 명령어를 입력합니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(238, 238, 238); padding: 10px; background-color: rgb(238, 238, 238);&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;adb&amp;nbsp;kill-server&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;margin-left: 2em;&quot;&gt;&lt;b style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;ADB 서버를 중지합니다.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(238, 238, 238); padding: 10px; background-color: rgb(238, 238, 238);&quot;&gt;&lt;p&gt;adb start-server&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;margin-left: 2em;&quot;&gt;&lt;b&gt;ADB 서버를 시작합니다.&lt;/b&gt;&lt;/p&gt;</description>
      <category>팁/Android</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/41</guid>
      <comments>https://oztheme.tistory.com/41#entry41comment</comments>
      <pubDate>Tue, 13 Oct 2015 09:17:22 +0900</pubDate>
    </item>
    <item>
      <title>OnePlus Two의 공개가 얼마 남지 않았습니다.</title>
      <link>https://oztheme.tistory.com/40</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 512px; width: 512px; height: 512px;; height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/225AA04055B1A1D919&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F225AA04055B1A1D919&quot; width=&quot;512&quot; height=&quot;512&quot; filename=&quot;10842111_610322675740208_910267231103481383_o.png[1].jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;width: 512px; height: 512px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&quot;Never Settle - 타협하지 말 것&quot; 이라는 슬로건을 내걸고 모습을 비춘&amp;nbsp;OnePlus사의 두번째 기기 'Two'의 발표가 임박해졌습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;전작(OnePlus One)에서 놀라운 모습을 보여주어 올해에도 놀라운 모습을 보여줄지 많은 관심이 쏠리는 회사라, 아래의 영상만큼은 아니지만&amp;nbsp;기대심에 부푼 사람들도 많을 것이라 짐작되고있습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;iframe src=&quot;https://www.youtube.com/embed/dZq8IELbNZQ&quot; width=&quot;560&quot; height=&quot;315&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;(Highlights@Youtube, 팬으로서의&amp;nbsp;기대를 잘 표현해주고 있다.)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;아래는 지금까지 유출 등으로 알려졌던 OnePlus 2의 스펙입니다.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;492&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; color: rgb(51, 51, 51); border: none; font-size: 12px; width: 492px;&quot;&gt;&lt;tbody style=&quot;box-sizing: border-box;&quot;&gt;&lt;tr style=&quot;box-sizing: border-box;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; word-break: break-word; padding-top: 0px !important; padding-bottom: 0px !important;&quot;&gt;&lt;b&gt;&amp;nbsp;모델명&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; word-break: break-word; padding-top: 0px !important; padding-bottom: 0px !important;&quot;&gt;&amp;nbsp;OnePlus Two&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: border-box;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; word-break: break-word; padding-top: 0px !important; padding-bottom: 0px !important;&quot;&gt;&lt;b&gt;&amp;nbsp;크기, 무게&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; word-break: break-word; padding-top: 0px !important; padding-bottom: 0px !important;&quot;&gt;&amp;nbsp;152.9 x 75.9 x 8.9 (mm), 166g&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: border-box;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 37px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;CPU&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;GPU&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Memory&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 37px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Qualcomm Snapdragon 810 (Quad&amp;nbsp;A57 + Quad A53,&amp;nbsp;big.LITTLE)&lt;/p&gt;&lt;p&gt;&amp;nbsp;Adreno 430&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&amp;nbsp;DDR3 4GB&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: border-box;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;Storage&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;32GB, 64GB&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: border-box;&quot;&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Display&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;QHD(1440x2560)&amp;nbsp;LTPS LCD (with Corning Gorilla Glass 4)&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Camera&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;후면 : 16MP (1600만 화소), AF, HDR, Dual-LED Flash&lt;/p&gt;&lt;p&gt;&amp;nbsp;전면 : 5MP (500만 화소)&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;SIM&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;Dual-SIM&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 80px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Sensor&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: border-box; padding: 0px; width: 411px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;지문인식 센서 등&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;램 4GB, QHD 등의 성능은 다른 대상과 비교해봐도 꿇리지 않을 정도지만&amp;nbsp;유의할 점은&amp;nbsp;hTC M9, 소니 엑스페리아 Z4(Z3+) 등에 탑재되며 화룡이란 별명을 얻었던 스냅드래곤 810이 탑재되어있습니다.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;스냅드래곤 810도 성능 자체로는 플래그십으로써 전혀 무리 없지만, 발열이 심하다는 단점을 가지고있기 때문에 많은 우려가 됩니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border: 1px solid rgb(247, 247, 247); padding: 10px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;발열, 쓰로틀링, 노이득 (ㅠㅠ)&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;전작이자 첫작인'One'에서는 스냅드래곤 801, Full HD 등 당시로선 어디 내놓아도 손색이 없을 성능의&amp;nbsp;탑재로 슬로건인 &quot;Flagship Killer&quot;을 제대로 보여주었던 OnePlus 이기에 이번엔 어떤 것을 보여줄지 기대해봅니다.&amp;nbsp;&lt;/p&gt;</description>
      <category>이전글</category>
      <author>0x1101</author>
      <guid isPermaLink="true">https://oztheme.tistory.com/40</guid>
      <comments>https://oztheme.tistory.com/40#entry40comment</comments>
      <pubDate>Fri, 24 Jul 2015 09:14:25 +0900</pubDate>
    </item>
  </channel>
</rss>