<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[stdio]]></title><description><![CDATA[Random ramblings of a anonymous software engineer. Contains occasional profanity. Personal opinions, not related to employer.]]></description><link>https://stdio.sangwhan.com/</link><generator>Ghost 0.11</generator><lastBuildDate>Thu, 09 Apr 2026 10:35:08 GMT</lastBuildDate><atom:link href="https://stdio.sangwhan.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence]]></title><description><![CDATA[<p>These are some thoughts on the daily reports issued by the Japanese Ministry of Health, Labor, and Welfare. I'll be using data from the <a href="https://www.mhlw.go.jp/stf/newpage_10521.html">March 27 COVID-19 status report</a> and the <a href="https://www.mhlw.go.jp/stf/seisakunitsuite/bunya/newpage_00032.html">English Version</a>.</p>

<p>Setting aside that these reports seem to be manually written in HTML by a human being (unlike</p>]]></description><link>https://stdio.sangwhan.com/wtf-japan-covid-19-report/</link><guid isPermaLink="false">20dda535-9278-4fa8-b5bb-bf2707b6dc66</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Sun, 29 Mar 2020 07:22:44 GMT</pubDate><media:content url="http://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-4.30.49-PM-1.png" medium="image"/><content:encoded><![CDATA[<img src="http://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-4.30.49-PM-1.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"><p>These are some thoughts on the daily reports issued by the Japanese Ministry of Health, Labor, and Welfare. I'll be using data from the <a href="https://www.mhlw.go.jp/stf/newpage_10521.html">March 27 COVID-19 status report</a> and the <a href="https://www.mhlw.go.jp/stf/seisakunitsuite/bunya/newpage_00032.html">English Version</a>.</p>

<p>Setting aside that these reports seem to be manually written in HTML by a human being (unlike other places that offer a dashboard, e.g. <a href="http://ncov.mohw.go.kr">South Korea</a>) there are some serious issues with this report format. I am writing this on March 29, but I will explain why am I using a report from March 27 at the end.</p>

<h2 id="sumswherewearegoingwedontneedsumstowork">Sums? Where we are going, we don't need sums to work.</h2>

<p>First, this is the breakdown table at the top of the report. I'm using the version from the English page, for legibility reasons. Here is an illustration of the legibility problem, using a grain of sesame:</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/sesame1.jpg" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>Compare this with a Wikipedia page, with the same sesame grain.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/sesame2.jpg" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/000614495.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>First problem here is that none of the really important tables here are actually text based tables - <strong>they are images</strong>. Images with no alt text, hence will give you dead silence if you try to <strong>access the information with a screen reader</strong>. I won't go into the details why this is bad as that's enough material for a whole new post, but you can read more on this <a href="https://www.w3.org/WAI/tutorials/images/tips/">here</a>.</p>

<p>On the other hand, it's extremely detailed, which is nice - but how do these numbers break down? The answer is, not in a very straightforward way.</p>

<p>So this table, confusingly enough is a quasi-hierarchy. It has these levels:</p>

<ol>
<li>Level 1: PCR tested positive, PCR tested  </li>
<li>Level 2: With no symptoms, With symptoms, Under confirmation of the symptom, Death (this is special, see below)  </li>
<li>Level 3: w/Symptoms - Already discharged, w/Symptoms - Need in-patient treatment, w/o Symptoms - Already discharged, w/o Symptoms - Need in-patient treatment  </li>
<li>And so forth.</li>
</ol>

<p>Tested negative is implicit. It's presumably <code>pcr_tested - pcr_tested_positive</code>. Ideally, <code>pcr_positive</code> and <code>pcr_negative</code> would have been level 1, with level 0 being <code>pcr_tested</code>. <br>
Now confusingly enough, here is how you integrate to get PCR tested positive, which is level 2:</p>

<ul>
<li>pcr_tested_positive = with_no_symptoms + with_symptoms + under_confirmation</li>
</ul>

<p>Remember to <strong>not</strong> include death, because this is a quasi-hierarchy. The table tempts you to, but it's excluded. (The quasi-nature is because it is under the PCR tested positive umbrella on level 2.) So what about integrating level 3?</p>

<p>That's simple. You <strong>don't</strong>. Because no matter how hard you try, the numbers won't add up. (e.g. Give it a try - you'll end up with 129 != 131 and 1147 != 1191. We'll need <strong>one of these numbers later</strong>.) Level 4 adds up though, so the plot thickens.</p>

<p>So, up next - do the rows integrate nicely? Fortunately - yes. Does the breakdown matter to the average joe? Not really. Unless you are a healthcare official, the details really don't matter - the average population only needs to know the summed numbers to be able to compare how bad the situation is with other countries, and how careful they should be when leaving their homes.</p>

<p>Here is a simplified version I made that shows only what matters to the <strong>average person</strong>.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-12.33.20-PM.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>According to this data, the positive case mortality rate is around 3.21%.</p>

<h2 id="thestatisticallydisappearingghostshippassengers">The statistically disappearing ghost ship passengers</h2>

<p>Moving on to the next chart, we can see some interesting patterns here.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/yesterday.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>First, there is a new number that was not disclosed in the previous table - 2059, and 672 respectively. So what are these? 2059 is a sum including the cruise ship passengers. Even worse, in the Japanese version even this table is missing - and  only provides a separate table with the cruise ship numbers, and <strong>completely omits the summed count</strong>.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/cruise.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>Why? Nobody knows. The problem here is that these people are no longer on the ship; and have actually landed on Japanese soil. So the real number of positive cases on Japanese soil is <strong>actually 2059, and not 1387</strong> as the previous table suggests. It is also worth noting that 603 of the 672 people have been discharged, and <strong>nobody has a slight idea where these people are</strong> as of today. </p>

<p>On top of that, "cured" cases reported by the government in press releases (but not this report, so the numbers aren't off by 600 people) <strong>include patients from the cruise ship</strong>, so if you calculate the ratio of cured to infected, <strong>it's on a different magnitude</strong>. Number magic! Deaths on the other hand have not been summed, so if you are a Japanese citizen who happened to die of COVID-19 complications after getting off of the Diamond Princess, you have not contributed to the mortality rate. Yay for statistics!</p>

<p>Moving on to the next nit, there is a bubble that says "from severe to moderate/mild symptoms" with a value next to it, but crossing two cells. What does this mean? Nobody knows, and there is no explanation why it crosses two cells on the page either.</p>

<p>The previous table, which is dated "12:00, Mar. 27", this table is dated "18:00 Mar. 26". That is a 18 hour difference between two adjacent tables - yet the total cases are exactly the same. So either all the hospitals are clocking out exactly at 18:00 and halting all testing, or something is very wrong.</p>

<h2 id="lookwoodyinfectedpeopleeverywhereeverywhere">Look Woody, infected people everywhere. EVERYWHERE.</h2>

<p>Now, after roughly two screens worth of a information summarized about the local situation, they move on to a <strong>static table</strong> breakdown of the global situation with <strong>no visualization</strong>. This section allocates a 53.47% of the vertical pixel real estate of the entire report. Sure, it's useful information - but not in a table which doesn't allow sorting with no plot. Here is the real-estate breakdown visualized:</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-5.09.19-PM.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>Here is the thing - there are a <a href="https://www.worldometers.info/coronavirus/">dozens</a> <a href="https://ourworldindata.org/coronavirus">of</a> <a href="https://www.who.int/emergencies/diseases/novel-coronavirus-2019/situation-reports/">places</a> <a href="https://ncov2019.live">that</a> <a href="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6">do</a> <a href="https://covid19dashboards.com">this</a> <a href="https://www.kff.org/global-health-policy/fact-sheet/coronavirus-tracker/">better</a> than this page, so the citizens here can look them up there. Even if English literacy is not a thing in Japan, I'm sure Ctrl+F and typing a country name in English for specific cases is not rocket science for anyone who has finished mandatory public education. Why they allocate so much space to information very few will read is a mystery - if they really want to, this should probably be a separate post.</p>

<p>I'm not sure what the intent of this is. Is it to show how terrible the rest of the world is and how great Japan is managing the situation? I don't know.</p>

<h2 id="inormallydontsumthingsbutwhenidotheydontaddup">I normally don't sum things, but when I do - they don't add up.</h2>

<p>Now, we finally move on to the meat of the report. Local regional breakdowns. Why this is <strong>after the global numbers is beyond me</strong>, but at this point it seems like anything goes.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-1.22.45-PM.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>The table columns are in the order of municipality, patients, currently in-hospital, discharged, and dead.</p>

<p>Now to add more consistency to the report, we have yet another unsortable static table. You can also see here that unlike the previous table, it has been sorted by the second column, which is well, consistent with <strong>none</strong> of the tables we have seen so far - but at this point, who cares.</p>

<p>This time, the sum of patients <strong>include</strong> the dead. Try it yourself.</p>

<ul>
<li>227 = 194 + 28 + 5</li>
</ul>

<p>There is no rhyme or reason behind the inconsistencies between the first summary table and the regional breakdown. (Not to mention that none of the tables have matching columns for baseline comparison, because that seemed like a good idea at the time to someone at Kasumigaseki.) There isn't much more to write about here, common sense seems to be a scarce resource to those who have been involved in the report.</p>

<p>Moving on, here is the grand total.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/Screen-Shot-2020-03-29-at-1.24.49-PM.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<p>Wait, <strong>what</strong>? Where did <strong>1191</strong> come from? When is this table from? Well, nobody knows - it's not written anywhere. Let's add those up, like we did on the first row of the same table.</p>

<ul>
<li>828 + 319 + 46 = 1193</li>
</ul>

<p>What?</p>

<p>What we do know is that this is yet another set of new numbers which don't match up to anything we have seen so far. Or does it? Remember they noted <strong>ç„¡ç—‡çŠ¶ç—…åŽŸä½“ä¿æœ‰è€…ã‚’é™¤ã</strong> (excluding those who are asymptomatic) above? Well, let's try that - here are some assumptions we will make based on what the government probably was thinking.</p>

<ol>
<li>Awaiting is considered asymptomatic, because that lowers the count. No symptoms, right?  </li>
<li>Asymptomatic is obviously asymptomatic.  </li>
<li>The dead has no symptoms, obviously.  </li>
<li>Remember we pretend the ghost ship passengers don't exist? They don't. They don't exist. Shhh.</li>
</ol>

<p>Ah, but there is 1191, which is the "with symptoms" column sum in the first table, right? But what about awaiting and dead and all of that? Maybe there is another way to compute this.</p>

<p>After trying a bunch of combinations from the table above, the conclusion is that this number might also come from this function.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2020/03/magic.png" alt="Japan's COVID-19 Reports - 140KBs of Unadulterated Incompetence"></p>

<ul>
<li>sum_local = pcr_positive - with_no_symptoms - awaiting_symptoms</li>
<li>1191 = 1349 - 131 - 27</li>
</ul>

<p>It turns out - this magic function works for all rows. That means the hierarchy is represented in yet another confusing form, but let's not go too deep into that.</p>

<p>I have no idea what they did about the dead, but the dead do not seem to be part of the equation. Why they chose this particular subset is beyond me.</p>

<h2 id="incompetencethatsourscrapeshield">Incompetence? That's our Scrapeshield.</h2>

<p>To add insult to injury, if you want to use these reports as a foundation for analysis, you are in for a surprise. (at least I was.)</p>

<p>Here are some issues that I encountered:</p>

<ol>
<li>The report formats constantly seem to change  </li>
<li>Images, as noted above  </li>
<li>No semantics or meaningful selectors in the markup  </li>
<li>Multiple report types  </li>
<li>No URL patterns</li>
</ol>

<p>The reason why I used a two day old report on March 29 is simple, there was no full report yesterday nor today. I'm guessing the Tokyo lockdown means that nobody can get to work, and PCs are too expensive to buy for home use so the people at the Ministry of Health can enjoy a nice weekend with hoarded pasta.</p>

<p>(4) in particular is interesting - the government releases multiple types of reports, depending on the week of day. Here are the different types: (you can see the full list <a href="https://www.mhlw.go.jp/stf/houdou/houdou_list_202003.html">here</a>)</p>

<ul>
<li><strong>æ–°åž‹ã‚³ãƒ­ãƒŠã‚¦ã‚¤ãƒ«ã‚¹æ„ŸæŸ“ç—‡ã®ç¾åœ¨ã®çŠ¶æ³ã¨åŽšç”ŸåŠ´åƒçœã®å¯¾å¿œã«ã¤ã„ã¦</strong>: Full report. Only released on weekdays. Summary table, cruise ship table, international table, followed by regional breakdown table.</li>
<li><strong>æ–°åž‹ã‚³ãƒ­ãƒŠã‚¦ã‚¤ãƒ«ã‚¹æ„ŸæŸ“ç—‡ã®ç¾åœ¨ã®çŠ¶æ³ã«ã¤ã„ã¦</strong>: Weekend/public holiday edition. Summary table, cruise ship table, and international table. No local regional breakdown.</li>
<li><strong>æ–°åž‹ã‚³ãƒ­ãƒŠã‚¦ã‚¤ãƒ«ã‚¹ã«é–¢é€£ã—ãŸæ‚£è€…ç­‰ã®ç™ºç”Ÿã«ã¤ã„ã¦</strong>: Released daily. Least useful, easiest to parse. Contains only a delta of new confirmed cases (no status, like the regional breakdown in the fully report) broke down by region.</li>
</ul>

<p>There is still no delta report for today as of now (March 29, 16:16) and as the report release time is not noted on the posts, I'm not sure when to expect it.</p>

<p>(UPDATE: I see it now, as of 19:30. I'm suspecting the 18:00 timestamp from earlier is probably related to this. Just a guess.)</p>

<h2 id="suggestions">Suggestions</h2>

<p>So, so far I've been complaining about this report type with no actionable feedback - which is bad. I doubt the Japanese government will read this post and actually take any sensible action, but here are some suggestions.</p>

<ol>
<li>Make two reports. A summary (not more than two pages) report for citizens, and another detailed one for health professionals and formal use.  </li>
<li>Remove the international table. It's not useful to 99% of the audience out there. We have WHO data for that - that's what hyperlinks are for. If you want to do your own international edition (which I believe you should not, considering the quality of your existing reports) please do it as a separate report.  </li>
<li>Accompany reports with the raw data used. Even better, provide a public data feed for people to take away and throw into a tool of their choice - you might get a nice dashboard or trend report for free from someone who is bored enough.  </li>
<li>If you can't do (3), at least add some selectors to your HTML reports that can be used to pull the data out.  </li>
<li>Make the data field availability as consistent as possible. Don't suddenly add and remove fields.  </li>
<li>Make the format of the report and data points available consistent every day.  </li>
<li>Don't invent magic equations. People notice when the numbers don't match up. If you invent an equation, disclose how you ended up with that number.  </li>
<li>Release reports and data regularly, and communicate when this will be and if you cannot communicate that too.  </li>
<li>Make the report URLs predictable, so people can scrape if needed.  </li>
<li>Please consider accessibility when making these reports available. Sure - OCR technology has advanced, but that is not a valid excuse.  </li>
<li>Enough with the bloody PDFs. Tabular data in the worst case can be released as CSV or XLS and nobody will complain. Maybe that grumpy guy who still uses his 25 year old PC-98 might, but f$#k him.</li>
</ol>]]></content:encoded></item><item><title><![CDATA[ABCI and TSUBAME 3.0]]></title><description><![CDATA[<p>This is an early introductory document covering the differences between two supercomputers which I happened to have access to.</p>

<p>More content might be added when I have time.</p>

<h3 id="hardware">Hardware</h3>

<p>A comparison of the compute nodes in the following table. The characteristics are relatively similar, but ABCI is generally more powerful</p>]]></description><link>https://stdio.sangwhan.com/abci-and-tsubame-3-0/</link><guid isPermaLink="false">22ef0fbd-7cb1-45f4-9de7-ec00e4a2e077</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Sat, 17 Aug 2019 08:04:33 GMT</pubDate><content:encoded><![CDATA[<p>This is an early introductory document covering the differences between two supercomputers which I happened to have access to.</p>

<p>More content might be added when I have time.</p>

<h3 id="hardware">Hardware</h3>

<p>A comparison of the compute nodes in the following table. The characteristics are relatively similar, but ABCI is generally more powerful and uses slightly more recent hardware.</p>

<p>In particular, one would not train a mixed-precision model on TSUBAME.</p>

<style>  
td, th { padding: 0.5em;}  
</style>

<table>  
<tr>  
<th>&nbsp;</th>  
<th>TSUBAME 3.0</th>  
<th>ABCI</th>  
</tr>

<tr>  
<td>CPU</td>  
<td>Intel(R) Xeon(R) CPU E5-2680 v4</td>  
<td>Intel(R) Xeon(R) Gold 6148  
</td>  
</tr>

<tr>  
<td>CPU Clock</td>  
<td>2.40Ghz</td>  
<td>2.40Ghz</td>  
</tr>

<tr>  
<td>CPU Core Count (Threads)</td>  
<td>28 (56)</td>  
<td>40 (80)</td>  
</tr>

<tr>  
<td>RAM</td>  
<td>256GB</td>  
<td>360GB</td>  
</tr>

<tr>  
<td>GPU</td>  
<td>Tesla P100-SXM2</td>  
<td>Tesla V100-SXM2</td>  
</tr>

<tr>  
<td>GPU VRAM</td>  
<td>16GB (-10MB)</td>  
<td>16GB (-0MB)</td>  
</tr>

<tr>  
<td>Interconnect</td>  
<td>4x Intel Omni-Path</td>  
<td>2x Mellanox Infiniband EDR</td>  
</tr>

<tr>  
<td>Full Resource</td>  
<td>q_node</td>  
<td>rt_F</td>  
</tr>

<tr>  
<td>Scratch (NVMe)</td>  
<td>/scr</td>  
<td>/local</td>  
</tr>

<tr>  
<td>Apps</td>  
<td>/apps</td>  
<td>/bb/apps</td>  
</tr>

<tr>  
<td>Home FS</td>  
<td>Lustre</td>  
<td>Lustre</td>  
</tr>

<tr>  
<td>Shared</td>  
<td>/gs/hs0, /gs/hs1, /gs/hs2</td>  
<td>/fs1, /fs2, /fs3</td>  
</tr>

<tr>  
<td>Shared FS</td>  
<td>Lustre</td>  
<td>GPFS</td>  
</tr>

<tr>  
<td>Max Duration - Batch (Hours)</td>  
<td>24</td>  
<td>72</td>  
</tr>

<tr>  
<td>Max Duration - Interactive (Hours)</td>  
<td>24</td>  
<td>12</td>  
</tr>

<tr>  
<td>Hourly Rate - Standard (JPY)</td>  
<td>80</td>  
<td>200</td>  
</tr>

</table>

<h3 id="trialjobs">Trial Jobs</h3>

<p>TSUBAME 3.0 allows one to submit up to two trial jobs using qsub. This is not supported in ABCI.</p>

<p>(Getting a shell through a trial job via qrsh seems to be rather tricky, possibly because trial jobs have extremely low priority. For the time being the cause of this is inconclusive.)</p>

<h3 id="interactivenode">Interactive Node</h3>

<p>TSUBAME has the interactive node world accessible through the following domain - which is load balanced between two nodes. (<code>login0</code> and <code>login1</code> - both can be accessed directly by changing the name in the domain.)</p>

<p><code>login.t3.gsic.titech.ac.jp</code></p>

<p>ABCI on the other hand does not allow <strong>direct access</strong> to the interactive node, and one needs to go through a proxy. The proxy is on the domain:</p>

<p><code>as.abci.ai</code></p>

<p>And one needs to use this as a jump node to get to the actual login servers. This can be done by ssh-ing into <code>as.abci.ai</code>, then ssh-ing into <code>es</code>. This is tedious and annoying, but recent versions of OpenSSH simplify this through a feature called "jump hosts". Ignore the official documentation - which gives you a convoluted method for connecting and use this:</p>

<pre><code>ssh -J username@as.abci.ai username@es
</code></pre>

<p><code>es</code> is load balanced between 4 nodes, which can be accessed directly.</p>

<h3 id="requestingresources">Requesting Resources</h3>

<p>Since both use the exact same job scheduler (Univa Grid Engine) - job submission generally works the same. The only thing you need to change when requesting a resource is the type, so the following command in TSUBAME:</p>

<pre><code>qrsh -g my-tsubame-group -l q_node=1 -l h_rt=00:10:00
</code></pre>

<p>Would be this in ABCI:</p>

<pre><code>qrsh -g my-abci-group -l rt_F=1 -l h_rt=00:10:00
</code></pre>

<p>Same rules apply in job scripts.</p>

<h3 id="modulenaming">Module Naming</h3>

<p>Both systems use GNU module to enable optional software packages. The naming convention is slightly different - ABCI uses two levels for module versions, while TSUBAME only uses a top level.</p>

<ul>
<li>ABCI: cuda/10.0/10.0.130</li>
<li>TSUBAME: cuda/10.0.130</li>
</ul>

<h3 id="choosingtherightcomputer">Choosing The Right Computer</h3>

<p>ABCI is 2.5x more expensive than TSUBAME (for Tokyo Tech users, if your project billing falls under ç¬¬4æ¡ç¬¬4é …(æˆæžœéžå…¬é–‹), then it's a 25% difference.) - so the general rule of thumb seems to be this:</p>

<ul>
<li>I <strong>absolutely</strong> need FP16: ABCI, although it's worth noting that one can get 2x the nodes on TSUBAME so if you can setup distributed training, it might be more cost effective to do it there.</li>
<li>I need more than 256GB RAM: ABCI</li>
<li>I need lots of CPU cores: ABCI</li>
<li>I need bleeding edge CPU instructions: ABCI</li>
<li>TSUBAME is overbooked: ABCI, obviously</li>
<li>Otherwise: TSUBAME</li>
</ul>

<p>That said, both are way cheaper than EC2 or GCP.</p>

<h3 id="closingremarks">Closing Remarks</h3>

<p>I wish TSUBAME billing could be simplified, the points system seems to be designed to obfuscate how much money one is spending on compute.</p>]]></content:encoded></item><item><title><![CDATA[ë˜ í•˜ë‚˜ì˜ ë¸Œë¼ìš°ì € ì—”ì§„ì´ ì—†ì–´ì¡Œë‹¤]]></title><description><![CDATA[<p><strong>ê°œì¸ì ì¸ ìž…ìž¥ì˜ ê¸€ìž…ë‹ˆë‹¤. í˜„ìž¬ í™œë™í•˜ê³  ìžˆëŠ” í‘œì¤€í™” ë‹¨ì²´, ê³ ìš©ì£¼ì˜ ìž…ìž¥ê³¼ëŠ” ë¬´ê´€í•©ë‹ˆë‹¤.</strong></p>

<p>Microsoftì—ì„œ ì§€ì§€ë‚œì£¼ì— Internet Explorerì˜ í›„ì†ìœ¼ë¡</p>]]></description><link>https://stdio.sangwhan.com/browser-engines/</link><guid isPermaLink="false">50783358-8ae9-420c-b1df-8936a184f66f</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Wed, 19 Dec 2018 14:23:42 GMT</pubDate><content:encoded><![CDATA[<p><strong>ê°œì¸ì ì¸ ìž…ìž¥ì˜ ê¸€ìž…ë‹ˆë‹¤. í˜„ìž¬ í™œë™í•˜ê³  ìžˆëŠ” í‘œì¤€í™” ë‹¨ì²´, ê³ ìš©ì£¼ì˜ ìž…ìž¥ê³¼ëŠ” ë¬´ê´€í•©ë‹ˆë‹¤.</strong></p>

<p>Microsoftì—ì„œ ì§€ì§€ë‚œì£¼ì— Internet Explorerì˜ í›„ì†ìœ¼ë¡œ ê°œë°œí•˜ë˜ ë¸Œë¼ìš°ì € Edgeì˜ (ì½”ë“œëª…: Spartan) ì—”ì§„ ê°œë°œì„ ì¤‘ë‹¨í•˜ê³ , Chromiumê¸°ë°˜ì˜ ë¸Œë¼ìš°ì €ë¡œ ìƒˆë¡œì´ ë‚´ë†“ê² ë‹¤ëŠ” <a href="https://www.windowscentral.com/what-is-chromium-microsoft-edge">ê¸°ì‚¬</a>ë¥¼ ë³´ì•˜ë‹¤. ì†Œë¬¸ì€ ê·¸ ì´ì „ì— ëŒê¸° ì‹œìž‘í•˜ì˜€ëŠ”ë°, ì´ê²Œ ë°œí‘œë˜ê³  ë‚˜ì„œ ì¶©ê²©ì´ ì»¸ë˜ê±´ ì‚¬ì‹¤ì´ë‹¤.</p>

<p>ì „ ì§ìž¥ì´ì—ˆë˜ Operaì˜ Prestoì—”ì§„ ê°œë°œ ì¤‘ë‹¨ì— ì´ì–´, ë‘ë²ˆì§¸ ëŒ€í˜• ì—”ì§„ì˜ ê°œë°œ í¬ê¸° ì†Œì‹ì´ë‹¤. ì´ì— ëŒ€í•´ì„œëŠ” í˜„ìž¬ ì†Œì† ë˜ì–´ìžˆëŠ” <a href="https://www.w3.org/2001/tag/">Technical Architecture Group</a>ì—ì„œë„ ì˜ê²¬ì´ ë§Žì´ ë‚˜ë‰œë‹¤. ì´ëŠ” ì–´ë””ê¹Œì§€ë‚˜ ê°œì¸ì ì¸ ì˜ê²¬ì´ì§€ë§Œ, ë‹¨ê¸°ì ìœ¼ë¡œ ë³´ì•˜ì„ë•ŒëŠ” ì»¨í…ì¸  ê°œë°œ íŽ¸ì˜ì„±ì— ì¸¡ë©´ì—ì„œëŠ” ì¢‹ì€ ì†Œì‹ì¼ ìˆ˜ ìžˆìœ¼ë‚˜ ìž¥ê¸°ì ì¸ ì›¹ì˜ ë¯¸ëž˜ë¥¼ ìƒê°í•œë‹¤ë©´ ì¢‹ìœ¼ ì†Œì‹ì´ë¼ê³  í•˜ê¸° íž˜ë“¤ë‹¤.</p>

<p>ì‚¬ëžŒë“¤ì´ Edgeë¥¼ ì–´ë–»ê²Œ ìƒê°í–ˆëŠ”ì§€ ëª¨ë¥´ê² ì§€ë§Œ, ë¸Œë¼ìš°ì € ì—”ì§€ë‹ˆì–´ë§ì„ 8.5ë…„ í•´ë³¸ ìž…ìž¥ì—ì„œ ë´¤ì„ë•ŒëŠ” êµ‰ìž¥ížˆ ìž˜ ë§Œë“  ë¸Œë¼ìš°ì €ë¼ê³  ìƒê°í•´ì„œ ë”ìš± ì•ˆíƒ€ê¹ê³ , ë‚˜ì•„ê°€ ë…¸ë ¥ì´ ì•„ê¹ë‹¤ëŠ” ìƒê°ì´ ë“¤ì—ˆë‹¤.</p>

<p>ê°™ì€ ì£¼ì œì— ëŒ€í•´ <a href="https://andregarzia.com/2018/12/while-we-blink-we-loose-the-web.html">Andre Garziaì”¨ê°€ ì“´ ê¸€</a>ì„ ì¸ìš©í•˜ë©´, ë¸Œë¼ìš°ì € ì—”ì§„ì´ ì—†ì–´ì§€ëŠ”ê²ƒì€ ì„¸ìƒì— ì–¸ì–´ê°€ ì—†ì–´ì§€ëŠ”ê²ƒê³¼ ê°™ë‹¤ëŠ” í‘œí˜„ì„ í•œë‹¤. ì‚¬ì‹¤ ì–´ë–»ê²Œ í‘œí˜„ì„ í•´ì•¼í• ì§€ ì¢‹ì€ ì•„ì´ë””ì–´ê°€ ë– ì˜¤ë¥´ì§€ ì•Šì•˜ëŠ”ë°, ì ì ˆí•œ ì˜ˆë¥¼ ë“  ê²ƒ ê°™ë‹¤. ëª¨ë‘ê°€ ê°™ì€ ì–¸ì–´ë¥¼ ì‚¬ìš©í•œë‹¤ë©´, ì¼ë°˜ì ì¸ ê´€ì ì—ì„œëŠ” íŽ¸í•  ìˆ˜ ìžˆìœ¼ë‚˜ ë‹¨ì¼ ë¬¸í™”ê°€ ì •ì°©ë˜ëŠ” ì‹œì ì—ì„œ ê·¸ê²Œ ë‹¹ì—°ì‹œë˜ê³ , ê·¸ ë‹¹ì—°ì‹œ ë¨ì— ë”°ë¼ ì‚¬ì‹¤ìƒ ìƒˆë¡œìš´ ì–¸ì–´, ì•„ìš¸ëŸ¬ ì†Œìˆ˜ ì–¸ì–´ê°€ ì†Œì™¸ë˜ëŠ” í˜„ìƒì´ ë‹¹ì—°ížˆ ë°œìƒí•˜ê²Œ ëœë‹¤.</p>

<p>ê¸°ì–µì„ ë”ë“¬ì–´ë³´ë©´ IEê°€ ì‹œìž¥ ì£¼ë„ê¶Œì„ ê°€ì¡Œë˜ ì‹œì ˆ ìƒë‹¹ìˆ˜ ì»¨í…ì¸ ê°€ IEë§Œì„ ì§€ì›í–ˆì—ˆë‹¤. ë¹„ì£¼ë¥˜ ë¸Œë¼ìš°ì €ë¥¼ ì´ìš©í•˜ëŠ” ì‚¬ìš©ìžë“¤ì€ ì—„ì²­ë‚œ ë¶ˆíŽ¸í•¨ì„ ê°ìˆ˜í•˜ê±°ë‚˜ ìœˆë„ìš°ì™€ IEë¥¼ ë³‘í–‰í•´ì„œ ì‚¬ìš©í•´ì•¼ë§Œ í–ˆë‹¤. (ê³µê³ ë¡­ê²Œë„, ì§€ê¸ˆë„ ì´ë ‡ê²Œ í•´ì•¼í•˜ëŠ” ì‚¬ì´íŠ¸ê°€ ë‚¨ì•„ìžˆë‹¤.) ì‹œìž¥ì€ ë¹„ì£¼ë¥˜ ë¸Œë¼ìš°ì €ì—ê²Œ í˜¹ë…í•œ í˜„ì‹¤ì´ì—ˆê³ , íšŒì‚¬ì—ì„œ ê·¸ëŸ¬í•œ ë¸Œë¼ìš°ì €ë“¤ ì§€ì›ì„ í•œë‹¤ê³  í•˜ë©´ [1] ë³´í†µ ì‹œê°„ ë‚­ë¹„í•œë‹¤ëŠ” ì†Œë¦¬ë¥¼ ë“£ê³¤ í•˜ì˜€ë‹¤.</p>

<p>ì´ëŸ¬í•œ ì–´ë ¤ìš´ ìƒí™©ì„ ì—¬ëŸ¬ ì‚¬ëžŒì´ ì—´ì •ì ìœ¼ë¡œ í•©ì‹¬í•˜ì—¬ ì§€ê¸ˆì˜ ìƒˆë¡œìš´ HTMLë¡œ í‘œì¤€í™”ë¥¼ ì„±ê³µì ìœ¼ë¡œ í•´ëƒˆê³ , ë•ë¶„ì— í”Œëž˜ì‹œë‚˜ ê¸°íƒ€ í”ŒëŸ¬ê·¸ì¸ì— ì˜ì¡´í•˜ë˜ ì»¨í…ì¸  ëŒ€ë¶€ë¶„ì´ ì§€ê¸ˆì€ í‘œì¤€ ê¸°ìˆ ë§Œìœ¼ë¡œ êµ¬ì„±ë˜ì–´ ë¹„êµì  ìž˜ ëŒì•„ê°€ê³  ìžˆê³ , ì–´ëŠ ë¸Œë¼ìš°ì €ë¥¼ ì‚¬ìš©í•˜ë“  [2] ëŒ€ë¶€ë¶„ì˜ ì›¹ ì„œë¹„ìŠ¤ ê¸°ëŠ¥ì€ ì´ìš©í•  ìˆ˜ ìžˆëŠ” ì„¸ìƒì´ ë§Œë“¤ì–´ì§€ë‚˜ ì‹¶ë”ë‹ˆ ì´ëŸ° ì¼ì´ ìƒê²¨ë²„ë¦°ê±´ ê²°ì½” ê¸ì •ì ìœ¼ë¡œ ë³´ê¸°ëŠ” íž˜ë“¤ë‹¤.</p>

<p>Chromiumì´ ì£¼ë¥˜ ë¸Œë¼ìš°ì €ê°€ ëœ ì§€ê¸ˆ, ì´ë¯¸ ì´ëŸ¬í•œ ì–´ë‘ìš´ ê³¼ê±°ë¡œ íšŒê·€í•˜ëŠ” í˜„ìƒì´ ì¡°ê¸ˆì”© ë³´ì´ê³  ìžˆë‹¤. íŠ¹ížˆ êµ­ë‚´ê°€ ê·¸ëŸ° í˜„ìƒì´ ì‹¬í•œ íŽ¸ì¸ë°, ëª¨ë…¸ì»¬ì³ë¥¼ ì¡°ìž¥í•˜ëŠ” í–‰ìœ„ë‹¤. ì´ë¯¸ ì—Žì§ˆëŸ¬ì§„ ë¬¼, [3] ì´ì œëŠ” ì»¨í…ì¸  ê°œë°œìžë“¤ì´ ì›¹ì„ ì§€í‚¬ ìˆ˜ ë°–ì— ì—†ê²Œ ë˜ì—ˆë‹¤.</p>

<p>ë‹­ê³¼ ë‹¬ê±€ì˜ ë¬¸ì œë¡œ ë³´ì¼ ìˆ˜ ìžˆê² ì§€ë§Œ, ìœ ì € ì´ì „ì— ì»¨í…ì¸ ê°€ ìžˆë‹¤. ì»¨í…ì¸ ê°€ ì—†ëŠ” ì›¹ ë¸Œë¼ìš°ì €ëŠ” ê·¸ì € about:blankê°€ ë‹´ê¸´ ì°½ì´ë‹ˆ. ê·¸ëŸ¬ë‹ˆ ì—¬ëŸ¬ ì‚¬ëžŒì´ ì´ëŸ° ë¬¸ì œë¥¼ ì‹¬ê°í•˜ê²Œ ë°›ì•„ë“¤ì´ê³ , ì›¹ì´ë¼ëŠ” ì‚¬íšŒì˜ ê· í˜•ì´ ë” ë¬´ë„ˆì§€ì§€ëŠ” ì•Šê²Œ ëª¨ë‘ê°€ ì‹ ê²½ì„ ì¨ì¤˜ì•¼ë§Œ ì‚´ì•„ë‚¨ì„ ìˆ˜ ìžˆë‹¤ëŠ” ê±¸ ì´ì•¼ê¸°í•˜ê³  ì‹¶ë‹¤.</p>

<p>ì´ì œëŠ” ìƒˆë¡œìš´ ë¸Œë¼ìš°ì € ì—”ì§„ì´ ë‚˜ì˜¤ê¸°ì— ì›¹ì€ ë„ˆë¬´ ê¸°ëŠ¥ì´ ë§Žê¸° ë•Œë¬¸ì— ì´ë²ˆì— ë¬´ë„ˆì§€ë©´ IE ë…ì  ì‹œìž¥ ì‹œì ˆê³¼ ê°™ì€ ë¹™í•˜ê¸°ë¥¼ ë‹¤ì‹œ í•œë²ˆ, ì´ë²ˆì—ëŠ” ë”ìš± ê¸¸ê²Œ ê²½í—˜í•˜ê²Œ ë êº¼ë¼ëŠ”ê±¸ ìžŠì§€ ë§ê³  [4] í˜¸í™˜ì„±ì„ ì§€ì¼œì¤¬ìœ¼ë©´ í•˜ëŠ” ìž‘ì€ ë°”ëž¨ì´ë‹¤.</p>

<ol>
<li>ì‚¬ì‹¤ ë‚˜ì˜ ê²½ìš°ì—ëŠ” ë„·ìŠ¤ì¼€ì´í”„ í˜¸í™˜ì„±ì„ ë§žì¶œ ìˆ˜ ìžˆë‹¤ëŠ” ì´ìœ ë¡œ í‹ˆìƒˆ ì‹œìž¥ì˜ ì´ë“ì„ ë³´ê³ , ê·¸ëŸ¬í•œ ìž¡ê¸°ìˆ ì´ ë°”íƒ•ì´ ë˜ì–´ ê²°êµ­ ë¸Œë¼ìš°ì € íšŒì‚¬ì— ì·¨ì—…ì„ í•  ìˆ˜ ìžˆê²Œ ë˜ì—ˆì§€ë§Œ ì´ê±´ íŠ¹ìˆ˜í•œ ì¼€ì´ìŠ¤ë¼ê³  ìƒê°í•œë‹¤.  </li>
<li>ë‹¨, êµ­ë‚´ ì •ë¶€ ê´€ë ¨ ì„œë¹„ìŠ¤ë‚˜ ê¸ˆìœµê¶Œì€ íŠ¹ìˆ˜ ì¼€ì´ìŠ¤ë¡œ ì˜ˆì™¸ë¡œ ì¹˜ìž. ì´ê²ƒ ê´€ë ¨í•´ì„œëŠ” ì“°ë˜ ê¸€ì´ ìžˆì—ˆëŠ”ë° ì‹œê°„ì´ ë˜ë©´ ë§ˆì € ì°ì„ í‘¸ëŠ”ê±¸ë¡œ.  </li>
<li>Chromiumì€ ì˜¤í”ˆì†ŒìŠ¤ í”„ë¡œì íŠ¸ì´ì§€ë§Œ, ê´€ë¦¬ ì²´ê³„ê°€ ìƒë‹¹ížˆ íŠ¹ì´í•˜ë‹¤. í˜„ìž¬ êµ¬ì¡°ì—ëŠ” ê°œì„ ì´ í•„ìš”í•œë°, ì´ì™€ ê´€ë ¨í•´ì„œëŠ” ë‚˜ì¤‘ì— ì‹œê°„ì´ í—ˆë½í• ë•Œ ë”°ë¡œ ìƒê°ì„ ì¢€ ì •ë¦¬í•´ë³¼ ì˜ˆì •ì´ë‹¤.  </li>
<li>íŠ¹ížˆ, ìš”ìƒˆëŠ” Polyfillë“¤ì´ ìž˜ ë‚˜ì˜¤ë‹ˆ ì ê·¹ì ìœ¼ë¡œ í™œìš©í•´ì£¼ë©´ ì´ê²Œ ì–´ë µì§€ ì•Šê²Œ ê°€ëŠ¥í•˜ë‹¤. <a href="https://polyfill.io/v2/docs/">Polyfill.io</a> ê°™ì€ ì„œë¹„ìŠ¤ë¥¼ ì“°ë©´ ë¸Œë¼ìš°ì € ë²„ì „ì— ë§žëŠ” Polyfillì„ ë‚´ë ¤ì£¼ë‹ˆ ì´ëŸ° ì„œë¹„ìŠ¤ë¥¼ ì ê·¹ì ìœ¼ë¡œ ì´ìš©í•˜ìž.</li>
</ol>]]></content:encoded></item><item><title><![CDATA[The Story of Cynthia]]></title><description><![CDATA[<p>Some have seen my <a href="https://github.com/cynthia">Github username</a> and have wondered why is this <strong>dude</strong> calling himself Cynthia? Of all things?</p>

<p>So here is the background story. It isn't a very interesting one. If you were expecting me talking about gender identity and what not, this isn't it. (Although I do wonder</p>]]></description><link>https://stdio.sangwhan.com/the-story-of-cynthia/</link><guid isPermaLink="false">6d3df8b0-c83b-4d51-a43f-1942d1fcb42e</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Thu, 18 Jan 2018 14:12:31 GMT</pubDate><content:encoded><![CDATA[<p>Some have seen my <a href="https://github.com/cynthia">Github username</a> and have wondered why is this <strong>dude</strong> calling himself Cynthia? Of all things?</p>

<p>So here is the background story. It isn't a very interesting one. If you were expecting me talking about gender identity and what not, this isn't it. (Although I do wonder sometimes if I am a fish. More on that sometime later.)</p>

<p>So if that was what you were looking for - feel free to hit the back button.</p>

<p>Back in 1995, there was a public and free Unix system which one could sign up, login and try well, anything. This was provided by a Korean company that probably had an unused SunOS machine just doing nothing, and one of the employees probably just thought it would be a cool idea.</p>

<p>Back then - stuff like this was fine to do - nowadays, well - you know what would happen to services like this.</p>

<p>(I had already completely destroyed my dad's computer attempting to install Linux with a pile of bad sector polluted floppy disks and a poorly written guide on how to do it - so having a Unix compatible system at home really wasn't an option.)</p>

<p>So it turns out - this free service had a couple limitations - one was that your shell account was limited to 4-8 characters, was case insensitive (requests would be lowercase converted) - and thanks to that little quirk, almost any commonly imaginable English word - including <strong>my surname</strong> and <strong>my name</strong> were all taken. (I was at a friend's place - who also happened to have a slightly better modem than I did, and parents who wouldn't go crazy on the phone bill.)</p>

<p>If I roughly remember what we tried - this is the rough list: (Personal information redacted)</p>

<ul>
<li>moon</li>
<li>sangwhan</li>
<li>moon[birthYYYY]</li>
<li>[birthYYYY]moon</li>
<li>moon[birthmmdd]</li>
<li>[birthmmdd]moon</li>
<li>...and some other ones, can't remember them all.</li>
</ul>

<p>Then we pulled out a dictionary looking for anything useful under the word "moon", because we ran out of options.</p>

<ul>
<li>lunar</li>
<li>lunatic: This would have been cool.</li>
<li>...and through the entire list. Which wasn't long.</li>
</ul>

<p>No avail. However, it turns out that my friend's father was a hard core Christian and even doing a part-time program in graduate school studying related topics - and had an old Korean-Latin dictionary sitting around. So we took that, and went through the list of words that meant "moon".</p>

<p>The first option was <strong>diana</strong>, which was clearly a feminine name - so we that skipped that one. The next one in the list was <strong>cynthia</strong>. Little did this dictionary note that it was <strong>the goddess</strong> of the moon, not just <strong>the</strong> moon - so I went for that. This wouldn't have happened in 2018, since - Wikipedia. Google. Or well, actual internet.</p>

<p>I have never heard anyone with this name, so little did I know this was feminine [1] - only having limited exposure to the western world. [2]</p>

<p>So, to this day - all of the accounts which are somewhat related to PAM authentication of some form are "cynthia". I don't really have a good excuse - my fingers have been typing that for 22 years and counting, and I'm too lazy to have different account names across different machines.</p>

<p>I learned the lesson about muscle memory the hard way, as my previous employer forced me to use something that resembled my name  - "smoon" in this case. Now at my new workplace I am back to cynthia. If I do hire a real Cynthia, then well - sucks to be her.</p>

<p>To give you a rough idea of how reluctant to change I am - my current macOS home directory (on a Retina 2012) is a cumulative migration which started from a Titanium Powerbook G4 in 2002.</p>

<p>[1] There was a gut feeling that this sort of <em>felt</em> feminine, but shit - it was supposed to be Latin, what would I know.</p>

<p>[2] This is probably why "English" names from people of Chinese heritage countries (e.g. Taiwan) around my age have some occasional surprises. My favorite to this day is Piggyboy - who was a customer contact at my previous workplace. I am not making this up.</p>]]></content:encoded></item><item><title><![CDATA[DIY Finsix Dart Magsafe Tip]]></title><description><![CDATA[<p><img src="https://stdio.sangwhan.com/content/images/2017/08/FullSizeRender-6.jpg" alt="Final build"></p>

<p><strong>NOTA BENE: Following this tutorial will most likely result in voiding multiple warranties across multiple devices. If done incorrectly this may result in extreme consequences - including fires, battery and or charger explosions and overheating, short circuits which can have consequences including burning your house or building down. The author</strong></p>]]></description><link>https://stdio.sangwhan.com/diy-finsix-dart-magsafe-tip/</link><guid isPermaLink="false">126279a5-4cfd-42ac-9278-d6e0140a3399</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Sat, 26 Aug 2017 16:08:22 GMT</pubDate><content:encoded><![CDATA[<p><img src="https://stdio.sangwhan.com/content/images/2017/08/FullSizeRender-6.jpg" alt="Final build"></p>

<p><strong>NOTA BENE: Following this tutorial will most likely result in voiding multiple warranties across multiple devices. If done incorrectly this may result in extreme consequences - including fires, battery and or charger explosions and overheating, short circuits which can have consequences including burning your house or building down. The author takes no responsibility for damage caused by performing this modification.</strong></p>

<p><strong>Do not use the modified adapter on any 15 inch Macbook device</strong>, as the Finsix Dart is unable to provide the required output to sufficiently drive the device.</p>

<p>Please note that the final result of this has not been properly tested with lab equipment. Also note that the output of the Dart is 20VDC, while Magsafe 1 power supplies output 16.5VDC. While I have used a Magsafe 1 connector here (mostly because I had a readily available broken power supply to cut the cable off of), I used a Magsafe 2 converter and have not actually charged a Magsafe 1 device with this. If you plan to charge a Magsafe 1 device, it might be worth double checking if the output voltage is a safe setup or not.</p>

<p><strong>TL:DR; for the experienced:</strong> 1) Get compatible connectors from eBay or Amazon (Links below) 2) wire up with a donor Magsafe.</p>

<p>Now that we have gone through that...</p>

<p>The Finsix Dart is a compact charger for laptops which comes a large set of tips that allows you to charge almost any laptop on the market. However, this does not include any Apple devices - mostly due to the <a href="https://en.wikipedia.org/wiki/MagSafe#Third-party_products">legal complications</a> for shipping Magsafe compatible devices. (There are rumors of Magsafe tips that shipped to Kickstarter backers, but I was unable to find any proof that these actually exist as none of them turned up in the used market.)</p>

<p>Parts needed:</p>

<p><img src="https://stdio.sangwhan.com/content/images/2017/08/51xA17s6R9L._SL1100_.jpg" alt="Compatible connectors">
<img src="https://stdio.sangwhan.com/content/images/2017/08/61ZEsTajzLL._SL1100_.jpg" alt="EMI filters"></p>

<ul>
<li>Magsafe (1 or 2) cable: You can get these from eBay as repair parts, or cut them off of a broken charger. Cut it roughly 10cm from the charger.</li>
<li>Finsix compatible connectors: Finsix uses a proprietary connector, which is luckily a very simple form factor so finding one that fits isn't too hard. These are mostly sold as "outdoor waterproof LED cables" on either eBay or Aliexpress. Amazon Japan also has these <a href="https://www.amazon.co.jp/gp/product/B0192RAT5C/ref=oh_aui_detailpage_o03_s00?ie=UTF8&amp;psc=1">here</a>.</li>
<li>Electric tape: As we are dealing with 20VDC, you absolutely want proper insulation. Don't cheap out on this.</li>
<li>Multimeter: Any cheap multimeter that can test continuity (the "beep" mode) should do.</li>
<li>EMI filters (optional): This isn't strictly necessary, but is a neat trick for hiding electric tape while doing passive filtering. Two birds, one stone. Get one that fits 5mm gauge wire. I used <a href="https://www.amazon.co.jp/gp/product/B01C702DJ6/ref=oh_aui_detailpage_o00_s00?ie=UTF8&amp;psc=1">this</a>.</li>
<li>Solder kit (optional): If you want a slightly more secure connection between the two wires, this is strongly recommended.</li>
<li>Wire stripper: Any stripper that can handle small gauge wires should work. I used a <a href="http://www.vessel.co.jp/product/stripper/detail/141012">Vessel 3500 E-2</a>.</li>
<li>Knife (optional): A standard office paper knife or X-ACTO blade should do.</li>
</ul>

<p><img src="https://stdio.sangwhan.com/content/images/2017/08/Screen-Shot-2017-08-27-at-14.39.36.jpg" alt="Dart Pinout"></p>

<p>The Dart uses a connector that looks roughly like the diagram above. It is a circular connector, with one side cut out. This perfectly fits the connector that we are going to use, but as the connector only has a very small ridge to prevent incorrect polarity you need to be careful when connecting it. (Normally, you won't have to do this too often. I use the ridge as a visual indicator for the polarity.)</p>

<p><img src="https://stdio.sangwhan.com/content/images/2017/08/FullSizeRender-5.jpg" alt="Connector"></p>

<p>These LED cable connectors do not come with any standard wire color coding scheme (mind was brown/blue, which makes no sense), so you will need to use a multimeter to find out which one maps to which color, then make sure GND connects to GND on the Magsafe, and VCC maps to VCC.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2017/08/311px-MagSafe-Pinout.svg.png" alt="Magsafe Pinout"></p>

<p>Normally, if you cut a Magsafe cable - there are two internal cables - one white and one black. Black is GND, which maps to pin 1 and 5, and white is VCC which maps to 2 and 4. 3 is connected to a negotiation chip inside the connector, so there is no wire that corresponds to that pin. If you are using a aftermarket repair cable (e.g. eBay, Aliexpress) the colors may not match the genuine cables, so please test with a multimeter to ensure polarity.</p>

<p>Whatever combination you come up with using a multimeter, strip both sides of the wire around 1cm, connect the two wire pairs, isolate them with a piece of paper so they are not shorted, connect it to the Dart USB cable and test them by checking if pin 1 and 5 on the Magsafe maps to GND on the Dart cable, and 2 and 4 to VCC on the Dart cable.</p>

<p>Depending on the connector you used, you may need to use a shave off a bit of plastic on the compatible connector for a tighter fit.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2017/08/IMG_5906.JPG" alt="Testing"></p>

<p><strong>Test between the two connectors as seen in photo above.</strong></p>

<p>Now that you have everything in place, test continuity between the charger end of the Dart USB cable and the Magsafe pins. Make sure you test these combinations:</p>

<ul>
<li>Magsafe 1/5 to GND: Should be connected</li>
<li>Magsafe 2/4 to VCC: Should be connected</li>
<li>Magsafe 1/5 to VCC: Should <strong>not</strong> be connected</li>
<li>Magsafe 2/4 to GND: Should <strong>not</strong> be connected</li>
</ul>

<p>All four tests (or all 8 tests) should pass, otherwise something is wrong. If only one of the pin pairs (e.g. pin 1 connects to GND, but 5 does not) check for continuity, then it is most likely you have a broken Magsafe connector, and might want to throw it out.</p>

<p>When all of the tests have passed, either you can solder the wire pairs for stability or just tape it up with electric tape. After you are done, repeat the same continuity tests again and make sure nothing has changed. Mistakes here can happen, so make sure you test for short circuits.</p>

<p>(Optional) When you are done, wrap it up with enough electric tape so the tape thickness roughly matches up with the original Magsafe wire's gauge, then clip on a EMI filter for a more professional look.</p>]]></content:encoded></item><item><title><![CDATA[Local Debugging of Service Workers]]></title><description><![CDATA[<p>Service workers requires a secure origin to work. For this reason, to debug service workers locally you will need to setup a HTTPS server on your local machine - unfortunately it isn't an entirely straightforward process. Here is a quick and dirty trick to do this.</p>

<p>First, you will need</p>]]></description><link>https://stdio.sangwhan.com/local-debugging-of-service-workers/</link><guid isPermaLink="false">30b3af21-906e-4508-ac79-b631e1e89897</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Thu, 17 Aug 2017 07:13:35 GMT</pubDate><content:encoded><![CDATA[<p>Service workers requires a secure origin to work. For this reason, to debug service workers locally you will need to setup a HTTPS server on your local machine - unfortunately it isn't an entirely straightforward process. Here is a quick and dirty trick to do this.</p>

<p>First, you will need to create a self signed certificate. This can be done using the following command. (<strong>Example is valid for 10 years, Do not do this in production. Bad idea.</strong>)</p>

<pre><code>openssl req -new -x509 -keyout /usr/local/etc/local-server.pem -out /usr/local/etc/local-server.pem -days 3650 -nodes
</code></pre>

<p>Then. you will need to start a local server that uses this certificate and serves HTTPS. The following snippet should be placed in a convenient location for execution, in my case I put it in /usr/local/bin/https-server. Put it wherever works for you, and add a +x bit. This is for Python 2.7. (or near versions.)</p>

<pre><code>#!/usr/bin/python
import BaseHTTPServer, SimpleHTTPServer
import ssl
httpd = BaseHTTPServer.HTTPServer(('localhost', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket, certfile='/usr/local/etc/local-server.pem', server_side=True)
httpd.serve_forever()
</code></pre>

<p>(Note: The HTTP server modules have been moved in Python 3.x, so that will need to be patched.)</p>

<p>Now, go to the directory where you have the SW based application running. For the example of our JavaScript SDK, this will be the root of the checked out repository. Run the https-server script. If you prefer a standard port, you will need to <strong>change the line that mentioned 4443 above to 443, and run the server as root. This is not recommended.</strong></p>

<p>The following example only covers Chrome. Other implementations probably involve different tricks for working around certificate validation.</p>

<p>Close all instances of Chrome. (or whatever Chrome based browser you are running) Make sure the root process is completely dead, and not just all the tabs closed. Now, start Chrome with the following flags:</p>

<pre><code>--ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:4443
</code></pre>

<p>On macOS, this would normally be:</p>

<pre><code>/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome  --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:4443
</code></pre>

<p>On Linux, this would normally be:</p>

<pre><code>google-chrome  --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:4443
</code></pre>

<p>Now, you can go to <a href="https://localhost:4443">https://localhost:4443</a> and debug your service worker locally. When you are done, <strong>make sure you shutdown the current browser instance - as the flag overrides are not safe for everyday browsing.</strong></p>]]></content:encoded></item><item><title><![CDATA[Barnes-Hut t-SNE for CUDA (Linux, Mac)]]></title><description><![CDATA[<p>I recently had to do some large-scale analysis, which was better suited to be run on a GPU. t-SNE is an excellent tool for visualizing data clusters, and those who have found this post via Google probably know what this already is, so I'm not going to go into much</p>]]></description><link>https://stdio.sangwhan.com/barnes-hut-t-sne-for-cuda-linux-mac/</link><guid isPermaLink="false">b5a2b469-352d-4a2e-a352-c295f55153b8</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Thu, 02 Mar 2017 04:56:39 GMT</pubDate><content:encoded><![CDATA[<p>I recently had to do some large-scale analysis, which was better suited to be run on a GPU. t-SNE is an excellent tool for visualizing data clusters, and those who have found this post via Google probably know what this already is, so I'm not going to go into much detail on the explanation. (The official page is <a href="http://lvdmaaten.github.io/tsne/">here</a>, with all the details you will need.)</p>

<p>I luckily found some readymade Python bindings, but with extremely limited documentation, and missing key pieces to get this working.</p>

<p><a href="https://github.com/georgedimitriadis/t_sne_bhcuda">https://github.com/georgedimitriadis/t_sne_bhcuda</a></p>

<p>Turns out that the binary building part was completely omitted in the repository, so here are pre-built binaries which I made for my own use.</p>

<p>Obviously, this comes with no warranty. If this works for you, good, if it doesn't - you are on your own.</p>

<p>Ubuntu Linux 16.04, CUDA 8.0: <br>
<a href="https://sangwhan.com/freeware/t_sne_bhcuda">https://sangwhan.com/freeware/t_sne_bhcuda</a></p>

<p>macOS 10.10, CUDA 7.5: <br>
<a href="https://sangwhan.com/freeware/t_sne_bhcuda75">https://sangwhan.com/freeware/t_sne_bhcuda75</a></p>

<p>Place this into the bin directory of your checkout, and the library should work as expected. (The unfortunate bit is as this relies on a external binary, there is a <strong>lot</strong> of I/O and lexical casting involved - which I plan to look into someday.)</p>

<p>If the perplexity is too small, it will trip and trigger a assertion with very little useful information to debug the problem. If it doesn't work, try reducing the perplexity. (More on what that is in the official page, link above.)</p>

<p>One thing to note: There is an interesting bug in the implementation's VRAM calculation routine. (which I didn't bother looking into) <strong>Setting <code>gpu_mem</code> to a value above 0.9 triggers VRAM OOM</strong>. (It seems to think a Titan X has 13.2GBs of memory, based on the actual allocated VRAM and ratio I used.)</p>

<p>I use the binary outside of the Python binding as well, so in my case, I replaced the <code>_find_exe_dir()</code> helper in my <code>site-package</code> installation.</p>

<pre><code>def _find_exe_dir():
    exe_dir = '/usr/local/bin'
    exe_file = 't_sne_bhcuda'

    return path_join(exe_dir, exe_file)
</code></pre>

<p>Both binaries are for 64-bit systems.</p>

<p>Example code: (Taken from the original source)</p>

<pre><code>import t_sne_bhcuda.bhtsne_cuda as tsne_bhcuda
import matplotlib.pyplot as plt
import numpy as np

perplexity = 50.0
theta = 0.5
learning_rate = 200.0
iterations = 2000
gpu_mem = 0.8

t_sne_result = tsne_bhcuda.t_sne(samples=data_for_tsne, files_dir='/home/user/wherever', no_dims=2, perplexity=perplexity, eta=learning_rate, theta=theta, iterations=iterations, gpu_mem=gpu_mem, randseed=-1, verbose=2)
t_sne_result = np.transpose(t_sne_result)

fig = plt.figure()
ax = fig.add_subplot(111)
ax.scatter(t_sne_result[0], t_sne_result[1])
plt.show()
</code></pre>

<p>Step by step instructions:</p>

<ol>
<li>Git clone Python bindings repository from Github.  </li>
<li>Make bin directory, download binary for your platform and drop it in there with the filename <code>t_sne_bhcuda</code>  </li>
<li>Alternatively, use the patch above and drop it into <code>/usr/local/bin</code>, same filename.  </li>
<li>Use the example code above.</li>
</ol>]]></content:encoded></item><item><title><![CDATA[FreeBSD ì— PowerDNS + MySQL ë°±ì—”ë“œ ì„¤ì¹˜, ê·¸ë¦¬ê³  ì˜¤í”ˆì†ŒìŠ¤ì˜ íž˜ê³¼ ë¬¸ì œì ]]></title><description><![CDATA[<p>ì „íŽ¸ì— ì´ì–´. FreeBSDë¥¼ ì‚¬ìš©í•˜ëŠ” ì„œë²„ì˜ ê¶ê·¹ì ì¸ ëª©ì ì€ ë‚´ë¶€ DNS ë° ë‚´ë¶€ DHCPë¥¼ ìœ„í•œê²ƒì´ì—ˆë‹¤.</p>

<ul>
<li>Master ì™€ Slaveê°€ ìžˆì–´ ë‘ê°œê°€ ê°™ì€ ì„¤ì •ìœ¼ë¡œ ìœ ì§€ë</li></ul>]]></description><link>https://stdio.sangwhan.com/freebsd-e-powerdns-mysql-baegendeu-seolci-geurigo-opeunsoseuyi-himgwa-munjejeom/</link><guid isPermaLink="false">a99b55f7-f607-4de8-b90d-6d8a7123d723</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Sun, 01 Jan 2017 15:00:42 GMT</pubDate><content:encoded><![CDATA[<p>ì „íŽ¸ì— ì´ì–´. FreeBSDë¥¼ ì‚¬ìš©í•˜ëŠ” ì„œë²„ì˜ ê¶ê·¹ì ì¸ ëª©ì ì€ ë‚´ë¶€ DNS ë° ë‚´ë¶€ DHCPë¥¼ ìœ„í•œê²ƒì´ì—ˆë‹¤.</p>

<ul>
<li>Master ì™€ Slaveê°€ ìžˆì–´ ë‘ê°œê°€ ê°™ì€ ì„¤ì •ìœ¼ë¡œ ìœ ì§€ë˜ì—ˆìœ¼ë©´ í–ˆë‹¤.</li>
<li>DNSì˜ ë‚´ìž¥ ê¸°ëŠ¥ì„ ì´ìš©í•´ë„ ë˜ê² ì§€ë§Œ, MySQLì˜ master-slave replicationì„ ì´ìš©í•˜ì—¬ í•œê°œ ë…¸ë“œê°€ ì‹¤íŒ¨í•  ê²½ìš° ë°”ë¡œ masterë¡œ ì‚¬ìš©í•  ìˆ˜ ìžˆê²Œ í•˜ê³  ì‹¶ì—ˆë‹¤.</li>
<li>DHCPëŠ” ê·¸ëƒ¥ pkgì—ì„œ ì„¤ì¹˜í•˜ë©´ ë˜ëŠ” ë¬¸ì œì—¬ì„œ í° ë‚œê´€ì´ ì—†ì—ˆë‹¤.</li>
</ul>

<p>ì—¬ê¸°ì„œ ë¬¸ì œê°€ í•˜ë‚˜ ë°œìƒí•˜ê²Œ ë˜ëŠ”ë°, FreeBSD pkg repositoryì— ìžˆëŠ” powerdns íŒ¨í‚¤ì§€ì—ëŠ” MySQL ë°±ì—”ë“œê°€ ì•„ë‹Œ Postgres ë°±ì—”ë“œë§Œ í¬í•¨ë˜ì–´ ìžˆë‹¤ëŠ” ê²ƒì´ì—ˆë‹¤.</p>

<p>ì¼ë°˜ì ìœ¼ë¡œ Postgresë¥¼ ì‚¬ìš©í•  ì¤„ ì•„ëŠ” ê²½ìš°ë¼ë©´ í° ë¬¸ì œê°€ ë˜ì§€ ì•ŠëŠ”ë°, ê³µêµë¡­ê²Œë„ ì‚¬ë‚´ì—ì„œ Postgresë¥¼ ë‹¤ë¤„ë³¸ ê²½í—˜ì´ ìžˆëŠ” ì‚¬ëžŒì´ 1ëª… ë°–ì— ì—†ì–´ single point of failureì˜ ìœ„í—˜ì„±ì´ ìžˆì—ˆë‹¤. ê·¸ë¦¬í•˜ì—¬, MySQL ë°±ì—”ë“œë¥¼ í¬í•¨í•˜ì—¬ ìƒˆë¡œ ë¹Œë“œí•˜ê¸°ë¡œ.</p>

<p>ì„¤ì¹˜ì— ì•žì„œ, ì˜ì¡´ì„±ì´ ìµœê·¼ì— ì¶”ê°€ëœê²Œ í•˜ë‚˜ ìžˆì–´ í•´ë‹¹ ì˜ì¡´ì„±ì„ ìœ„í•´ pandocì´ë¼ëŠ” ë¬¸ì„œ í”„ë¦¬í”„ë¡œì„¸ì„œì˜ ì„¤ì¹˜ê°€ í•„ìš”í•˜ë‹¤. (ì´ì „ì— íŒ¨í‚¤ì§€ ëª…ì¹­ì´ pandoc ì´ì—ˆìœ¼ë‹ˆ ë§Œì•½ì— ì•„ëž˜ ëª…ë ¹ìœ¼ë¡œ ì„¤ì¹˜ê°€ ì•ˆëœë‹¤ë©´ pandoc ìœ¼ë¡œ ë°”ê¿”ë³´ë©´ ë  ìˆ˜ë„ ìžˆë‹¤.)</p>

<pre><code>pkg install hs-pandoc
</code></pre>

<p>ì»´íŒŒì¼ ë°©ë²•ì€ <a href="https://github.com/PowerDNS/pdns/">ê³µì‹ ë¬¸ì„œ</a>ì— ìžˆëŠ” ê·¸ëŒ€ë¡œ ë”°ë¼í–ˆê³ , ì¶”ê°€í•œê±´ MySQL ë°±ì—”ë“œë¥¼ í™œì„±í™” ì‹œì¼œì¤€ ê²ƒ ë°–ì— ì—†ë‹¤. ëª…ë ¹ì€ ì•„ëž˜ì™€ ê°™ë‹¤.</p>

<pre><code>./configure --with-modules="bind gmysql"
</code></pre>

<p>ìš°ë¶„íˆ¬ì˜ build-essentialì— í•´ë‹¹í•˜ëŠ”ê²ƒì„ ì„¤ì¹˜í•˜ê³  (ì´ì™€ ê´€ë ¨í•´ì„œëŠ” <a href="https://stdio.sangwhan.com/freebsd-for-ubuntu-aliens-kr/">ì´ì „ ê¸€</a>ì— ì„¤ëª… ë˜ì–´ìžˆìœ¼ë‹ˆ ì°¸ê³ í•˜ë©´ ëœë‹¤.) ë¹Œë“œë¥¼ ì§„í–‰í•˜ëŠ”ë°, <a href="https://github.com/PowerDNS/pdns/issues/3552#event-827196449">ê´´ìƒí•œ ì»´íŒŒì¼ ì˜¤ë¥˜</a>ë¥¼ ê²½í—˜í•˜ê²Œ ë˜ì—ˆë‹¤. (ë‚´ê°€ ê²ªì—ˆë˜ ì»´íŒŒì¼ ì—ëŸ¬ëŠ” í„°ë¯¸ë„ ìŠ¤í¬ë¡¤ë°±ì˜ ì‹ ë“¤ì—ê²Œ ìž¬ë¬¼ë¡œ ë°”ì³ì¡Œê¸° ë•Œë¬¸ì— ë” ì´ìƒ ì—†ë‹¤. êµ³ì´ í•´ë‹¹ refspecì„ ì°¾ì•„ê°€ì„œ ìž¬í˜„í•´ë³´ê¸°ëŠ” ê·€ì°®ìœ¼ë‚˜, ê¶ê·¹ì ìœ¼ë¡œëŠ” ê°™ì€ ì—ëŸ¬ì´ë‹¤.)</p>

<p>ì´ ì˜¤ë¥˜ì˜ ì›ì¸ì€ ëŒ€ë¶€ë¶„ì˜ ì²­ì¤‘ì—ê²Œ ì˜ë¯¸ê°€ ì—†ì„ ë“¯ í•˜ì—¬, ì´ ê¸€ì—ì„œëŠ” ì„¤ëª…í•˜ì§€ ì•Šê² ë‹¤. (ëª…ì‹œì ìœ¼ë¡œ ìƒì„±ëœ std::stringê³¼ ë¬µì‹œì ìœ¼ë¡œ ìƒì„±ëœ std::stringì˜ ìˆ˜ëª…ê³¼ reference tuple ì•ˆì— rvalueë¥¼ ë‹´ì„ ìˆ˜ ìžˆëŠ”ê°€ ì—†ëŠ”ê°€ì— ëŒ€í•´ <strong>í‘œì¤€ì˜ ê³¼ë„í•œ í•´ì„ì„</strong> clangì—ì„œ í•˜ê³  ìžˆëŠ” ë¬¸ì œì¸ë°, ë” ì´ì•¼ê¸°ë¥¼ í•˜ìžë©´ ë³µìž¡í•˜ë‹ˆ ìƒëžµ. ë‚´ìš©ì´ ê¶ê¸ˆí•˜ë©´ PRì„ ë³´ë©´ ëœë‹¤.)</p>

<p>ë¶ˆí–‰ ì¤‘ ë‹¤í–‰ì€ ë‚˜ ë§ê³  ì´ ë¬¸ì œë¥¼ ê²ªì€ ì‚¬ëžŒì´ ìžˆë‹¤ëŠ” ê²ƒì´ì—ˆê³ , ì ì–´ë„ ìš°ë¦¬ í™˜ê²½ì— í•œì •ëœ ë¬¸ì œê°€ ì•„ë‹ˆì—ˆë‹¤ëŠ” ê²ƒì´ë‹¤.</p>

<p><strong>ì¶”ê°€ (45879fae66a5fbc37d1edf32b2b9337383140d2f ê¸°ì¤€):</strong> FreeBSD ë¹Œë“œê°€ ë˜ ë§ê°€ì ¸ë²„ë ¤ì„œ, <a href="https://github.com/PowerDNS/pdns/pull/5067">PR#5067</a>ì˜ íŒ¨ì¹˜ê°€ í•„ìš”í•˜ê³ , <code>export CXXFLAGS=-std=c++11</code>ì„ ì¶”ê°€í•´ì£¼ì–´ì•¼ í•œë‹¤.</p>

<p><strong>ì˜¤í”ˆì†ŒìŠ¤ì˜ ë¬¸ì œì </strong></p>

<p>ì—¬ê¸°ì„œ ë¬¸ì œëŠ” ê¹ƒí—™ì— ë²„ê·¸ ë¦¬í¬íŠ¸ê°€ ë“¤ì–´ê°„ ë‚ ì§œëŠ” 3ì›” 11ì´ì—ˆë‹¤ëŠ” ê²ƒì´ê³ , ë‚´ê°€ ì´ ë¬¸ì œë¥¼ ê²ªì€ê²ƒì€ 10ì›” 3ì¼ì´ì—ˆë‹¤ëŠ” ê²ƒì´ë‹¤. 1ì¤„ ì§œë¦¬ ì»´íŒŒì¼ ì—ëŸ¬ í•˜ë‚˜ë¥¼ ìˆ˜ì •í•˜ëŠ”ë° 7ë‹¬ ë™ì•ˆ ì•„ë¬´ë„ ì†ì„ ëŒ€ì§€ ì•Šì•˜ë‹¤ëŠ” ê²ƒì´ë‹¤.</p>

<p>ì˜¤í”ˆì†ŒìŠ¤ì˜ ë¬¸ì œì ì€ ìƒì‚°ì„ í•˜ëŠ” ì‚¬ëžŒì´ ì†Œë¹„ë¥¼ í•˜ëŠ” ì‚¬ëžŒë³´ë‹¤ ì›”ë“±í•˜ê²Œ ì ë‹¤ëŠ” ê²ƒì´ë‹¤. íŠ¹ížˆë‚˜ ë‚œì´ë„ ë†’ì€ ê·¼ë³¸ ë¼ì´ë¸ŒëŸ¬ë¦¬ì¼ìˆ˜ë¡ (íŠ¹ížˆ, C/C++ì¼ ê²½ìš° ì´ ë¬¸ì œê°€ ì‹¬ê°í•˜ë‹¤) ì‚¬ëžŒë“¤ì´ ê¸°ì—¬ë¥¼ ì•ˆí•˜ê³  ì“°ê¸°ë§Œ í•œë‹¤ëŠ” ê²ƒì´ë‹¤. ë¬¸ì œëŠ” ê¸°ì—¬ë¥¼ í•˜ëŠ” ì‚¬ëžŒë“¤ì´ ì ê³ , ìš”êµ¬ì‚¬í•­ì„ ì™¸ì¹˜ëŠ” ìœ ì €ë“¤ë§Œ ë„ˆë¬´ ë§Žì•„ ëŒ€ì‘ì´ ì•ˆë˜ëŠ” ì‹œì ì— ê¸°ì—¬ë¥¼ í•˜ë˜ ì‚¬ëžŒë“¤ë„ ê²°êµ­ì—ëŠ” í•˜ë‚˜ì”© ë²ˆì•„ì›ƒì„ í•˜ì—¬ ì˜¤í”ˆì†ŒìŠ¤ì— ê¸°ì—¬í•˜ëŠ” ê²ƒì„ í¬ê¸°í•œë‹¤ëŠ” ê²ƒì´ë‹¤.</p>

<p>í•œ ì¤„ì§œë¦¬ íŒ¨ì¹˜ ë³´ë‚´ë©´ì„œ ìƒìƒ‰ ë‚´ëŠ”ê²ƒ ê°™ì§€ë§Œ, ì´ë ‡ê²Œë¼ë„ í•˜ëŠ” ì‚¬ëžŒì´ ë„ˆë¬´ ì—†ëŠ”ê²Œ í˜„ì‹¤ì´ë‹¤. ë‹¤í–‰ížˆë„, PowerDNS ì»¤ë¯¸í„°ë“¤ì´ ë‚´ íŒ¨ì¹˜ë¥¼ ë¹ ë¥´ê²Œ (í•˜ë£¨ ê±¸ë ¸ë˜ê²ƒìœ¼ë¡œ ê¸°ì–µëœë‹¤) PRì„ ë°˜ì˜í•´ì£¼ì—ˆê³ , BSD + clang í™˜ê²½ í˜¸í™˜ì„± ë¬¸ì œê°€ ì–´ë µì§€ ì•Šê²Œ í•´ê²°ë˜ì—ˆë‹¤.</p>

<p>ì˜¤í”ˆì†ŒìŠ¤ë¥¼ ê°–ë‹¤ ì“°ì§€ë§Œ ë§ê³ , ë¬¸ì œê°€ ìžˆìœ¼ë©´ ë¬¸ì œê°€ ìžˆë‹¤ê³  ë³´ê³ ë§Œ í•˜ë˜ê°€ ê·¸ëƒ¥ ì‰½ê²Œ ë™ìž‘í•˜ëŠ” ë‹¤ë¥¸ ë¼ì´ë¸ŒëŸ¬ë¦¬ë¥¼ íƒí•˜ëŠ” ê²½ìš°ê°€ ë§Žì€ë° ë§Œì•½ì— í•´ê²°ì„ í•  ìˆ˜ ìžˆëŠ” ë¬¸ì œë©´ í•´ê²°ì„ í•´ì„œ ê¸°ì—¬ë„ í–ˆìœ¼ë©´ í•˜ëŠ” ë°”ëž¨ì´ë‹¤.</p>

<p><strong>ì‚­ì œëœ ë‚´ìš©</strong></p>

<p>ì›ëž˜ ê¸€ì—ëŠ” PowerDNS ì„¤ì • ê´€ë ¨ëœ ë‚´ìš©ë„ ìžˆì—ˆìœ¼ë‚˜, íšŒì‚¬ ë‚´ì—ì„œ PowerDNSë¥¼ ì‚¬ìš©í•˜ëŠ” ëª©ì ì´ ë‚´ë¶€ DNS ë° ë¹„í‘œì¤€ ë‚´ë¶€ TLDë¥¼ ì§€ì› í•˜ê¸° ìœ„í•œ ëª©ì ì´ì–´ì„œ ì„¤ì • ê³µìœ ë¥¼ í•˜ë©´ í˜¼ëž€ë§Œ ìžˆì„ ê²ƒ ê°™ì•„ (í•´ë‹¹ ì„¤ì •ì„ ê·¸ëŒ€ë¡œ ë³µì œí•˜ì˜€ì„ ê²½ìš° ì •ìƒì ì¸ DNS í™˜ê²½ì´ ì•„ë‹Œ íŠ¹ìˆ˜í•œ í™˜ê²½ìœ¼ë¡œ ì„¤ì •ë˜ì–´ ë²„ë¦¬ê¸° ë•Œë¬¸ì—), ì²˜ìŒ ìž‘ì„±í•œ ë‚´ìš©ì—ì„œ ì‚­ì œí•˜ì˜€ë‹¤.</p>

<p><strong>ì¶”ê°€ëœ ë‚´ìš©</strong></p>

<p>2017.2.22: Pandoc ì˜ì¡´ì„± ê´€ë ¨ ë‚´ìš© ì¶”ê°€.</p>]]></content:encoded></item><item><title><![CDATA[Ubuntu Serverì— ìµìˆ™í•œ ìœ ì €ë¥¼ ìœ„í•œ FreeBSD ê¸°ë³¸ ì„¤ì •]]></title><description><![CDATA[<p>íšŒì‚¬ì—ì„œ ì´ì „ê¹Œì§€ ë‚´ë¶€ í…ŒìŠ¤íŠ¸ ì„œë²„ ë“±ì„ ì ‘ì†í•˜ê¸° ìœ„í•´ì„œ mDNS (Bonjour)ë¥¼ ì´ìš©í•˜ë‹¤ê°€, ì•ˆì •ì„± ë¬¸ì œë‚˜ broadcast ë…¸ì´ì¦ˆ ë“±ì´ ë„ˆë¬´ ë§Žê³</p>]]></description><link>https://stdio.sangwhan.com/freebsd-for-ubuntu-aliens-kr/</link><guid isPermaLink="false">e53ae369-2efe-44e0-a0e3-03579bca977c</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Tue, 04 Oct 2016 04:08:10 GMT</pubDate><content:encoded><![CDATA[<p>íšŒì‚¬ì—ì„œ ì´ì „ê¹Œì§€ ë‚´ë¶€ í…ŒìŠ¤íŠ¸ ì„œë²„ ë“±ì„ ì ‘ì†í•˜ê¸° ìœ„í•´ì„œ mDNS (Bonjour)ë¥¼ ì´ìš©í•˜ë‹¤ê°€, ì•ˆì •ì„± ë¬¸ì œë‚˜ broadcast ë…¸ì´ì¦ˆ ë“±ì´ ë„ˆë¬´ ë§Žê³ , ì„œë¸Œë„·ì„ ë¶„ë¦¬í•  ìƒê°ì— ë‚´ë¶€ DNSë¥¼ êµ¬ì¶•í•˜ê¸°ë¡œ í•˜ì˜€ë‹¤. ìƒˆë¡œ ì•„ì£¼ ì €ì‚¬ì–‘ ì„œë²„ë¥¼ 2ëŒ€ êµ¬ìž…í•˜ì—¬, DNSë¥¼ ê±°ê¸°ì— ë„£ê¸°ë¡œ í•˜ì˜€ëŠ”ë°, ê°„í˜ˆì ìœ¼ë¡œ ìž¬ë¶€íŒ…ì‹œ <strong>ë¶€íŒ…ì´ ì™„ë£Œë˜ì§€ ì•ŠëŠ” <a href="https://github.com/systemd/systemd/pull/3087">ì–´ì´ì—†ëŠ” systemd ë²„ê·¸</a></strong>ë¥¼ ê²ªê²Œ ë˜ì–´ ì´ˆê¸° ì„¸íŒ… í›„ ìž¥ê¸°ì ì¸ ì•ˆì •ì„± ë¬¸ì œì— ëŒ€í•´ì„œ ê±±ì •ì´ ë“¤ê¸° ì‹œìž‘í•˜ì˜€ë‹¤.</p>

<p>í•´ë‹¹ ë²„ê·¸ëŠ” ìˆ˜ì •ì´ ëœ ìƒíƒœì´ë‚˜, <strong>ë¶€íŒ…ì„ ë‹´ë‹¹í•˜ëŠ” ëª¨ë“ˆì´ ë¶€íŒ…ì„ ì™„ë£Œí•˜ì§€ ëª»í•˜ëŠ” ë²„ê·¸ê°€ ìžˆëŠ” ìƒíƒœì—ì„œ ë¦´ë¦¬ì¦ˆê°€ ë˜ì—ˆë‹¤</strong>ëŠ” ê²ƒ ìžì²´ì— ëŒ€í•´ì„œ ì‹ ë¢°ë„ì˜ ë¬¸ì œê°€ ìžˆì–´, ì¼ë‹¨ì€ ë‹¹ë¶„ê°„ì€ ì‚¬ë‚´ì— systemdë¥¼ ì‚¬ìš©í•˜ëŠ” ë°°í¬íŒì˜ ë„ìž…ì€ ë¯¸ë£¨ëŠ” ê²ƒìœ¼ë¡œ í•˜ê³ , ê·¸ ì‚¬ì´ì— ëŒ€ì±…ì„ ì¡°ê¸ˆ ê³ ë¯¼í•˜ë‹¤ systemdì™€ ì—°ì´ ìžˆì„ëž˜ì•¼ ìžˆì„ ìˆ˜ ì—†ëŠ” BSDë¥¼ ì‚¬ìš©í•˜ê¸°ë¡œ í•˜ì˜€ë‹¤. (ì•„ìš¸ëŸ¬ ê°œì¸ì ìœ¼ë¡œ Lennart Poetteringì˜ ì² í•™ê³¼ ë™ì˜í•˜ì§€ ì•ŠëŠ”ë‹¤. ì´ê±´ ì–´ë””ê¹Œì§€ë‚˜ ì‚¬ì¡±ì´ì§€ë§Œ...)</p>

<p>ì—¬ëŸ¬ê°€ì§€ë¥¼ ê²€í† í•˜ë‹¤ (DragonflyBSDë¥¼ íŠ¹ížˆ ìœ ì‹¬ížˆ ë³´ì•˜ë‹¤) ê²°êµ­ì€ í•´ë³¸ì ì´ ìžˆëŠ” FreeBSDë¡œ ê²°ì •ì„ í•˜ì˜€ëŠ”ë°, ì˜¤ëž«ë§Œì— í•´ë³´ë‹ˆ (ë§ˆì§€ë§‰ìœ¼ë¡œ ì–‘ì‚°ì—ì„œ ì¼ë˜ê²Œ 4.xëŒ€ì˜€ë˜ê±¸ë¡œ ê¸°ì–µëœë‹¤.) ì €ìª½ í™˜ê²½ì— ë„ˆë¬´ ìµìˆ™í•´ì ¸ë²„ë ¤ ë¶ˆíŽ¸í•œ ì ì´ í•œë‘ê°€ì§€ê°€ ì•„ë‹ˆì—ˆë‹¤. ê·¸ëž˜ì„œ ì¡°ê¸ˆ í™˜ê²½ì„ ë¹„ìŠ·í•˜ê²Œ ë§žì¶”ëŠ” ê³¼ì •ì˜ ê¸°ë¡ì„ ë‚¨ê¸°ê¸°ë¡œ.</p>

<p>FreeBSDëŠ” apt-getì´ë‚˜ yumì´ ì—†ê³ , ìžì²´ íŒ¨í‚¤ì§€ ë§¤ë‹ˆì ¸ë¥¼ ì‚¬ìš©í•œë‹¤. portsì™€ pkg ë‘ ê°€ì§€ ì¤‘ì—ì„œ ì„ íƒì„ í•  ìˆ˜ ìžˆëŠ”ë°, ì „ìžëŠ” ì†ŒìŠ¤ ë¹Œë“œë¼ê³  ìƒê°í•˜ë©´ ë˜ê³  í›„ìžëŠ” ë¹Œë“œ ëœ ë°”ì´ë„ˆë¦¬ë¥¼ ì‚¬ìš©í•œë‹¤. ë°°í¬ ëŒ€ìƒ í•˜ë“œì›¨ì–´ê°€ í”í•´ë¹ ì§„ ì¸í…”ì´ì–´ì„œ, ì•„ëž˜ ì˜ˆì‹œì—ëŠ” ì‹œê°„ ì ˆì•½ì„ ìœ„í•´ í›„ìžë¥¼ ì‚¬ìš©í•˜ì˜€ë‹¤. ì´ì „ì— ì–‘ì‚°ë•Œì—ëŠ” ì„œë²„ê°€ DEC Alphaì—¬ì„œ í¬íŠ¸ë¡œ ë‹¤ ë¹Œë“œë¥¼ í–ˆë˜ (ì¢‹ì§€ ì•Šì€) ê¸°ì–µì´ ìžˆë‹¤.</p>

<p>ì„¤ì¹˜ ìžì²´ëŠ” ì¸ìŠ¤í†¨ëŸ¬ë¥¼ ì‚¬ìš©í•  ê²½ìš° í¬ê²Œ ì–´ë ¤ì›€ì´ ì—†ìœ¼ë‹ˆ ì„¤ëª…ì„ ìƒëžµí•˜ê³ , í™˜ê²½ì„ ì¡°ê¸ˆì´ë‚˜ë§ˆ ê·¼ëŒ€ì ì¸ í™˜ê²½ìœ¼ë¡œ ì‚¬ìš©í•  ìˆ˜ ìžˆë„ë¡ í•˜ëŠ” ë°©ë²•ì„ ê³µìœ í•˜ë©´ ë„ì›€ì´ ë  ì‚¬ëžŒì´ ìžˆì„ê¹Œ ì‹¶ì–´ ë¬¸ì„œí™”. (ì´ ì„œë²„ë“¤ì˜ ê²½ìš°ì—ëŠ” ZFS ì „ì²´ ë””ìŠ¤í¬ ì‚¬ìš©ìœ¼ë¡œ ìžë™ ì„¤ì •, ë‚˜ë¨¸ì§€ëŠ” ê±°ì˜ ê¸°ë³¸ ì„¤ì •, ë‹¨ games ë©”íƒ€ íŒ¨í‚¤ì§€ëŠ” ëºë‹¤.)</p>

<p>í•œ ê°€ì§€ ì£¼ì˜í•  ì ì´ ìžˆë‹¤ë©´, ì„œë²„ ëª©ì ì´ë¼ë©´ ì„¤ì¹˜ ê³¼ì • ì¤‘ ì‚¬ìš©ìž ê³„ì • ì¶”ê°€ì‹œ <strong>ê´€ë¦¬ìžëŠ” wheel ê·¸ë£¹ì— ë„£ì–´ì£¼ëŠ”ê²Œ ì¢‹ë‹¤</strong>ëŠ” ê²ƒ ì •ë„ê°€ ë˜ê² ë‹¤. OpenSSH ì„¤ì¹˜ ê¸°ë³¸ ì˜µì…˜ì— root ë¡œê·¸ì¸ì´ ê¸ˆì§€ë˜ì–´ ìžˆëŠ”ë°, wheel ê·¸ë£¹ì— ë„£ì–´ì¤˜ì•¼ suê°€ ëœë‹¤. (FreeBSDëŠ” ê¸°ë³¸ ë°°í¬ì‹œ sudoê°€ ì—†ë‹¤. í•„ìš”í•˜ë©´ ì„¤ì¹˜í•´ì„œ ì‚¬ìš©í•´ì•¼í•œë‹¤.) ì´ê±¸ ê¹Œë¨¹ìœ¼ë©´ ì´í›„ì— ë¬¼ë¦¬ì ìœ¼ë¡œ ì„œë²„ì— ê°€ì„œ ìž‘ì—…ì„ í•œë²ˆ í•´ì¤˜ì•¼í•˜ëŠ” ë¬¸ì œê°€ ë°œìƒí•˜ë‹ˆ ì£¼ì˜í•˜ë„ë¡ í•˜ìž.</p>

<p>ê°œì¸ì ìœ¼ë¡œ ì‚¬ìš©ì¤‘ì¸ ë…¸íŠ¸ë¶ ëª¨ë‹ˆí„°ê°€ ìž‘ì•„ì„œ, motdê°€ ë³´ì§€ ì•Šì„ ë‚´ìš©ì´ ë„ˆë¬´ ë§Žì´ í‘œì‹œë˜ì–´ ë¹ˆ ë‚´ìš©ìœ¼ë¡œ ì‚­ì œ.</p>

<pre><code>mv /etc/motd /etc/motd.bak
touch /etc/motd
</code></pre>

<p>FreeBSDì—ëŠ” ì„¤ì¹˜ì‹œ ì»´íŒŒì¼ëŸ¬ê°€ (10.x ì„¤ì¹˜ì‹œ LLVM 3.7ì´ ê¹”ë ¤ìžˆë‹¤.) ë”°ë¼ì˜¤ë‚˜ build-essentialì— í•´ë‹¹ë˜ëŠ” ë©”íƒ€íŒ¨í‚¤ì§€ê°€ ì—†ì–´ ì´ê±¸ ì•Œì•„ì„œ ì¡°ë¦½ì„ í•´ì•¼í•œë‹¤. ì•„ëž˜ê°€ ê·¸ê²ƒ.</p>

<pre><code>pkg install autoconf automake devel/pkgconf libtool bison gmake ragel devel/boost-all git
</code></pre>

<p>ì´ ì¤‘ì—ì„œ ë§¤ìš° ì¤‘ìš”í•œê²ƒì´ gmakeì´ë‹¤. FreeBSDëŠ” ìžì²´ì ì¸ makeë¥¼ í¬í•¨í•˜ì—¬ ë°°í¬ë¥¼ í•˜ëŠ”ë°, <strong>GNU Makeì™€ í˜¸í™˜ì´ ë˜ì§€ ì•Šê¸° ë•Œë¬¸ì—</strong> ìƒë‹¹ìˆ˜ ì˜¤í”ˆ ì†ŒìŠ¤ í”„ë¡œì íŠ¸ê°€ ë¹Œë“œê°€ ë˜ì§€ ì•ŠëŠ”ë‹¤. ë§ˆì§€ë§‰ 2ê°œëŠ” ë‚˜ì˜ ê²½ìš°ì—ëŠ” í•„ìš”í–ˆëŠ”ë°, í•„ìš”í•˜ì§€ ì•Šì„ ê²½ìš°ì—ëŠ” ìƒëžµí•˜ì—¬ë„ ëœë‹¤.</p>

<p>ìƒë‹¹ìˆ˜ ì˜¤í”ˆì†ŒìŠ¤ í”„ë¡œì íŠ¸ëŠ” Makefileë‚´ì— ê²Œìœ¼ë¥´ê²Œ gcc/g++ë¥¼ ì“°ë„ë¡ <strong>í•˜ë“œ ì½”ë”©</strong> ë˜ì–´ìžˆë‹¤. ì»´íŒŒì¼ëŸ¬ê°€ ê¹”ë ¤ìžˆëŠ” ë§ˆë‹¹ì— êµ³ì´ GNU Compilerë¥¼ ì„¤ì¹˜í•  ì˜ë¯¸ëŠ” ì—†ëŠ”ë“¯ í•˜ì—¬, ì´ ë¶€ë¶„ì€ macOSì—ì„œ ì• í”Œì´ ì‚¬ìš©í•˜ëŠ” ê¼¼ìˆ˜ë¥¼ ì‚¬ìš©í•˜ì˜€ë‹¤.</p>

<pre><code># ì´ëŸ° ì§“ ìžì£¼ í•˜ë©´ ì§€ì˜¥ ê°„ë‹¤.
ln -s /usr/local/llvm37/bin/clang /usr/local/bin/gcc
ln -s /usr/local/llvm37/bin/clang++ /usr/local/bin/g++
</code></pre>

<p>ì‚¬ìš©í•˜ëŠ” FreeBSD ë²„ì „ì— ë”°ë¼ /usr/local/llvm[0-9]+ ì—ì„œ ì‚¬ìš©í•˜ê³  ì‹¶ì€ ë²„ì „ì„ ì°¾ì•„ì„œ ì¨ì£¼ë©´ ëœë‹¤.</p>

<p>ë§ˆì§€ë§‰ìœ¼ë¡œ, FreeBSDëŠ” ê¸°ë³¸ìœ¼ë¡œ ì‰˜ë¡œ cshë¥¼, ê¸°ë³¸ ì—ë””í„°ë¡œ BSD vië¥¼ ì‚¬ìš©í•˜ëŠ”ë°, ìƒë‹¹ ìˆ˜ í”„ë¡œì íŠ¸ë“¤ì´ (ì•„ìš¸ëŸ¬ ì‚¬ë‚´ í”„ë¡œì íŠ¸ë“¤) bashismì´ ì‹¬í•˜ê³ , BSD viì˜ ê¸°ëŠ¥ìƒ ì œì•½ì´ ë§Žì•„ ì „ì—­ bash ì„¤ì •ì˜ alias ë ˆë²¨ì—ì„œ ë°”ê¾¸ì—ˆë‹¤. ì•„ìš¸ëŸ¬ makeë„ gmakeë¡œ alias. bash ì‚¬ìš©ìžì—ë§Œ í•´ë‹¹ë˜ì§€ë§Œ, rootfsë¥¼ ì†ìƒì‹œí‚¤ì§€ ì•Šê³  ìµìˆ™í•œ í™˜ê²½ì„ ìœ ì§€í•  ìˆ˜ê°€ ìžˆëŠ” íŽ¸ë²•ì´ë‹¤.</p>

<p><strong>/etc/profile í•˜ë‹¨ì— ì•„ëž˜ ë‚´ìš© ì¶”ê°€</strong></p>

<pre><code>if [ "$PS1" ]; then
  if [ "$BASH" ] &amp;&amp; [ "$BASH" != "/bin/sh" ]; then
    . /etc/bash.bashrc
  fi
fi
</code></pre>

<p><strong>/etc/bash.bashrc ìž‘ì„±</strong></p>

<pre><code># Better prompt for both normal and sudo
PS1='[\u@\h \W]\$ '
SUDO_PS1='[\u@\h \W]\$ '

export TERM=xterm-color
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad

# BSD ls uses a different parameter for colorization
alias ls="ls -G"
alias l="ls -lG"
alias ll="ls -lGa"
alias vi="vim"
# BSD make isn't particularly useful, so replace that with gmake
alias make="gmake"
</code></pre>

<p>BSD lsì˜ ê²½ìš°ëŠ” ìƒ‰ìƒ í‘œì‹œë¥¼ ìœ„í•œ ì˜µì…˜ì´ ë‹¤ë¥´ë‹¤. BSDì—ì„œ ì œê³µí•˜ëŠ” coreutilsì— í•´ë‹¹ë˜ëŠ” ëª…ë ¹ì˜ ê²½ìš° GNUì— ë¹„í•´ì„œ ê¸°ëŠ¥ì´ ì—†ê±°ë‚˜, ì‚¬ìš© ë°©ë²•ì´ ë‹¬ë¼ ë¶ˆíŽ¸í•¨ì´ ìžˆì„ ìˆ˜ ìžˆë‹¤. GNUì—ë§Œ ìžˆëŠ” ê¸°ëŠ¥ë“¤ì´ í•„ìš”í•  ê²½ìš°, sysutils/coreutilsë¥¼ ì„¤ì¹˜í•˜ë©´ ëœë‹¤. (í˜„ìž¬ ìž‘ì—…ì¤‘ì¸ ë°°í¬ í™˜ê²½ì—ëŠ” ë””ìŠ¤í¬ ìš©ëŸ‰ ì ˆì•½ì„ ìœ„í•´ coreutilsì„¤ì¹˜ë¥¼ í•˜ì§€ ì•Šì•˜ë‹¤.)</p>

<p>PowerDNS ì„¤ì¹˜ë²•ì€ ë‹¤ìŒ ê¸€ì—.</p>]]></content:encoded></item><item><title><![CDATA[ìž˜ ì•Œë ¤ì§€ì§€ ì•Šì€ Python REPL - ptpython]]></title><description><![CDATA[<p><strong>ìž…ë ¥ ížˆìŠ¤í† ë¦¬ëŠ” ì—…ë¬´ì™€ ê´€ë ¨ëœ ëŒ€ì™¸ë¹„ ì½”ë“œê°€ ìžˆì–´ ì´ˆê¸°í™” í•˜ì˜€ë‹¤.</strong></p>

<p>ìµœê·¼ì— NLP ì²˜ë¦¬ ê´€ë ¨ ML ìž‘ì—…ì„ ì¡°ê¸ˆ í•˜ê³  ìžˆëŠ”ë°, training iterationì„ ì¡°ê¸ˆ ë</p>]]></description><link>https://stdio.sangwhan.com/python-repl-ptpython/</link><guid isPermaLink="false">cdf5fd3c-278d-4614-a6ea-7f854ed7c636</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Wed, 17 Aug 2016 06:00:36 GMT</pubDate><content:encoded><![CDATA[<p><strong>ìž…ë ¥ ížˆìŠ¤í† ë¦¬ëŠ” ì—…ë¬´ì™€ ê´€ë ¨ëœ ëŒ€ì™¸ë¹„ ì½”ë“œê°€ ìžˆì–´ ì´ˆê¸°í™” í•˜ì˜€ë‹¤.</strong></p>

<p>ìµœê·¼ì— NLP ì²˜ë¦¬ ê´€ë ¨ ML ìž‘ì—…ì„ ì¡°ê¸ˆ í•˜ê³  ìžˆëŠ”ë°, training iterationì„ ì¡°ê¸ˆ ë” ë‹¨ìˆœí™” í•˜ê¸° ìœ„í•´ì„œ ì½”ë“œë¥¼ ë§¤ë²ˆ ë°”ê¾¸ëŠ” í˜•ì‹ ì•„ë‹ˆë¼ ì›¹ì´ë‚˜ CLIë¡œ ë§Œë“¤ì–´ì„œ ê³ ë¯¼í•˜ë˜ ì¤‘ CLIë¥¼ ë§Œë“¤ì–´ë³¼ê¹Œ í•˜ë‹¤ê°€ ë°œê²¬í•œ <a href="https://github.com/jonathanslenders/python-prompt-toolkit">python-prompt-toolkit</a> ì´ë¼ëŠ” íŽ˜ì´ì§€ì—ì„œ ìš°ì—°ížˆ ë°œê²¬í•˜ì˜€ë‹¤.</p>

<p>ì„¤ì¹˜ì— í° ë…¸ë ¥ì´ ë“¤ì§€ ì•Šì•„ ì„¤ì¹˜í•´ë´¤ëŠ”ë°, ì´ê²Œ ê½¤ ë¬¼ê±´ì´ë‹¤. iPythonì„ ë²„ë ¤ë„ ë  ì •ë„ë¡œ í›Œë¥­í•˜ë‹¤. Quicksilverì—ì„œ Alfredë¡œ ë„˜ì–´ê°”ì„ë•Œ ì²˜ëŸ¼ 30ë¶„ ì¨ë³´ê³  ë°”ë¡œ ê²°ì •í•˜ëŠ” ì¼ì´ ìž˜ ì—†ëŠ”ë°, ì´ê²Œ ë”± ê·¸ ê²½ìš°.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/08/Screen-Shot-2016-08-16-at-6-33-23-PM.png" alt="ì„¤ì • í™”ë©´"></p>

<p>ì´ë ‡ê²Œ ì—¬ëŸ¬ê°€ì§€ ì„¤ì •ë„ ì œê³µí•˜ê³ , iPython ì²˜ëŸ¼ ì‚¬ìš©ë„ ê°€ëŠ¥í•˜ë‹¤.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/08/Screen-Shot-2016-08-16-at-6-34-28-PM.png" alt="ì˜¤ë¥˜ ë³´ì •"></p>

<p>ì˜¤ë¥˜ê°€ ë°œìƒí•˜ë©´ êµ¬ë¬¸ ì—ëŸ¬ë¥¼ ì¶œë ¥í•˜ê³  ìœ„ì¹˜ë¥¼ ì•Œë ¤ì£¼ëŠ”ê²Œ ì•„ë‹ˆë¼, êµ¬ë¬¸ ì—ëŸ¬ê°€ ë‚˜ëŠ” ê³³ìœ¼ë¡œ ì»¤ì„œê°€ ì´ë™ì´ ëœë‹¤.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/08/Screen-Shot-2016-08-16-at-6-34-38-PM.png" alt=""></p>

<p>vi ì‹ìœ¼ë¡œ ì½”ë“œ íŽ¸ì§‘ë„ ê°€ëŠ¥í•´ì„œ, <code>u</code>ë¥¼ ì´ìš©í•´ì„œ NAV ëª¨ë“œì—ì„œ ìž…ë ¥ ì·¨ì†Œë„ ê°€ëŠ¥í•˜ë‹¤. ìœ„ ìŠ¤í¬ë¦°ìƒ·ì€ <code>Esc, Esc, w, w, cw, ;, Space</code>ë¡œ ì˜¤ë¥˜ë¥¼ ë³´ì •í•œ ëª¨ìŠµ.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/08/Screen-Shot-2016-08-16-at-6-38-56-PM.png" alt="ížˆìŠ¤í† ë¦¬ í™”ë©´"></p>

<p>ížˆìŠ¤í† ë¦¬ í™”ë©´ì—ì„œ ì „ì— ìž…ë ¥í–ˆë˜ ì´ë ¥ì„ ì§œì§‘ê¸°í•´ì„œ í”„ë¡œê·¸ëž¨ì„ ë§Œë“¤ ìˆ˜ë„ ìžˆë‹¤. ì´ê±´ ê½¤ë‚˜ ê´œì°®ì€ ë“¯. ê¸°ëŠ¥ì„ ì¢€ ë” í™•ì¸í•´ë´ì•¼ê² ì§€ë§Œ, ì™œ ë” ì•Œë ¤ì§€ì§€ ì•Šì•˜ëŠ”ì§€ ì‹ ê¸°í•  ì •ë„ë¡œ í›Œë¥­í•œ REPLì´ë‹¤.</p>

<p>ì•„ì‰¬ìš´ ì ì€, ìžë™ ì™„ì„±ì´ iPythonì—ì„œ ê°œì„ ëœê²ƒ ê°™ì§€ëŠ” ì•Šë‹¤. ë™ì¼í•œ ë²„ê·¸(?)ë“¤ì´ ìžˆë‹¤. (ê·¸ëž˜ë„ Jupyter ë³´ë‹¤ì•¼...)</p>]]></content:encoded></item><item><title><![CDATA[ì™¸ë¶€ ë¯¸ë””ì–´ ì—°ê²°ì‹œ Photos.app ìžë™ ì‹¤í–‰ ë§‰ê¸°]]></title><description><![CDATA[<p>ì• í”Œì˜ ì–´ë–¤ íŒ€ì—ì„œ ì´ ì •ì‹  ë‚˜ê°„ ì•„ì´ë””ì–´ë¥¼ ëƒˆëŠ”ì§€ëŠ” ëª¨ë¥´ê² ì§€ë§Œ, Yosemite ë¶€í„° ë¬´ìŠ¨ ìž¥ì¹˜ë§Œ ì—°ê²°í•˜ë©´ <code>Photos.app</code>ì´ ì‹¤í–‰ë˜ëŠ”, ì„¤ì</p>]]></description><link>https://stdio.sangwhan.com/disable-photos-app/</link><guid isPermaLink="false">a64111ff-253f-4c55-9b49-89f4a4cd8910</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Tue, 16 Aug 2016 07:42:31 GMT</pubDate><content:encoded><![CDATA[<p>ì• í”Œì˜ ì–´ë–¤ íŒ€ì—ì„œ ì´ ì •ì‹  ë‚˜ê°„ ì•„ì´ë””ì–´ë¥¼ ëƒˆëŠ”ì§€ëŠ” ëª¨ë¥´ê² ì§€ë§Œ, Yosemite ë¶€í„° ë¬´ìŠ¨ ìž¥ì¹˜ë§Œ ì—°ê²°í•˜ë©´ <code>Photos.app</code>ì´ ì‹¤í–‰ë˜ëŠ”, ì„¤ì • UIë¡œëŠ” ëŒìˆ˜ë„ ì—†ëŠ” ê¸°ëŠ¥ì´ ìžˆë‹¤. (ê°œë³„ ìž¥ì¹˜ì— ëŒ€í•´ì„œë§Œ ëŒ ìˆ˜ ìžˆë‹¤.)</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/08/Screen-Shot-2016-08-16-at-4-44-44-PM.png" alt="ë¬¸ì œì˜ ê¸°ëŠ¥">
ìœ„ ìŠ¤ìƒ·ì´ ë¬¸ì œì˜ <code>Photos.app</code></p>

<p>ë‹¤í–‰ížˆë„, ì•„ëž˜ ëª…ë ¹ìœ¼ë¡œ ëª¨ë“  ìž¥ì¹˜ì— ëŒ€í•´ì„œ ì˜ì›ížˆ ì´ ê¸°ëŠ¥ì„ êº¼ë²„ë¦´ ìˆ˜ ìžˆë‹¤.</p>

<pre><code>defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool YES
</code></pre>]]></content:encoded></item><item><title><![CDATA[iTerm2 ë¡œ í„°ë¯¸ë„ì—ì„œ ì´ë¯¸ì§€ ë³´ê¸°]]></title><description><![CDATA[<p>ë¹„êµì  ìµœê·¼ ë²„ì „ì— ì¶”ê°€ëœ ê¸°ëŠ¥ì¸ë°, iTerm2ë¥¼ ì´ìš©í•˜ì—¬ í„°ë¯¸ë„ì—ì„œ ì´ë¯¸ì§€ë¥¼ ë³¼ ìˆ˜ ìžˆëŠ” ìš”ê¸´í•œ ê¸°ëŠ¥ì´ ì¶”ê°€ëœê²ƒì„ ì˜¤ëŠ˜ ì•Œì•˜ë‹</p>]]></description><link>https://stdio.sangwhan.com/iterm2-image-viewer/</link><guid isPermaLink="false">4fd3b867-0de6-425e-99f7-bc65041307cb</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Thu, 21 Jul 2016 10:54:48 GMT</pubDate><content:encoded><![CDATA[<p>ë¹„êµì  ìµœê·¼ ë²„ì „ì— ì¶”ê°€ëœ ê¸°ëŠ¥ì¸ë°, iTerm2ë¥¼ ì´ìš©í•˜ì—¬ í„°ë¯¸ë„ì—ì„œ ì´ë¯¸ì§€ë¥¼ ë³¼ ìˆ˜ ìžˆëŠ” ìš”ê¸´í•œ ê¸°ëŠ¥ì´ ì¶”ê°€ëœê²ƒì„ ì˜¤ëŠ˜ ì•Œì•˜ë‹¤. ì—…ë¬´ìƒ ì´ë¯¸ì§€ë¥¼ ë³¼ ì¼ì´ ë§Žë‹¤ ë³´ë‹ˆ, ì•žìœ¼ë¡œ ê½¤ ìœ ìš©í•˜ê²Œ ì‚¬ìš©í•  ìˆ˜ ìžˆëŠ” ê¸°ëŠ¥ìœ¼ë¡œ ë³´ì¸ë‹¤.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/07/Screen-Shot-2016-07-21-at-7-49-58-PM.png" alt="ì‰˜ ê¸°ëŠ¥ ì„¤ì¹˜"></p>

<p>ë˜ëŠ” ì•„ëž˜ ëª…ë ¹ (iTerm 3.0.5 ê¸°ì¤€ìœ¼ë¡œëŠ” ìœ íš¨í•˜ë‚˜, ì´í›„ì— ë°”ë€” ìˆ˜ ìžˆë‹¤) ë¥¼ ë³µì‚¬í•´ì„œ ë¶™ì—¬ë„£ìœ¼ë©´ ëœë‹¤.</p>

<pre><code>curl -L https://iterm2.com/misc/install_shell_integration_and_utilities.sh | bash
</code></pre>

<p>ë¡œì»¬ì— ìžˆëŠ” íŒŒì¼ì„ ë³¼ë•ŒëŠ”</p>

<pre><code>imgcat íŒŒì¼ëª…
</code></pre>

<p>ì‹ìœ¼ë¡œ ë³´ë©´ ë˜ëŠ”ë°, ë” ìš”ê¸´í•œê±´ íŒŒì´í”„ê°€ ì§€ì›ì´ ëœë‹¤. ë‹¨ì ì¸ ì˜ˆë¡œ,</p>

<pre><code>curl https://stdio.sangwhan.com/content/images/2016/07/Screen-Shot-2016-07-21-at-7-49-58-PM.png | imgcat
</code></pre>

<p>ë¥¼ í•˜ë©´ ì•„ëž˜ì™€ ê°™ì´ ë‚˜ì˜¨ë‹¤. (ì´ë¯¸ì§€ëŠ” ë•Œë§ˆì¹¨ ë§í¬ê°€ ìžˆì–´ ë¸”ë¡œê·¸ ê¸€ ì´ë¯¸ì§€ë¥¼ ê·¸ëŒ€ë¡œ ì‚¬ìš©í•˜ì˜€ë‹¤.)</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/07/Screen-Shot-2016-07-21-at-7-53-45-PM.png" alt="imgcat ì‚¬ìš©"></p>]]></content:encoded></item><item><title><![CDATA[Slackì„ 3ê°œì›”ê°„ ì¨ë³¸ ë‹¨ìƒ]]></title><description><![CDATA[<p>ì§€ê¸ˆ ì¼í•˜ëŠ” ê³³ì—ì„œ ì•½ 3ê°œì›” ì „ì— ìŠ¬ëž™ì„ ë„ìž…í•˜ì˜€ë‹¤. ì²˜ìŒì— ëª‡ì£¼ ì •ë„ ë¬´ë£Œë¡œ ì¨ë³´ê³ , integration ì˜ì¡´ì„±ì´ ë†’ì•„ì§€ê³  ê³¼ê±° ëŒ€í™</p>]]></description><link>https://stdio.sangwhan.com/three-months-with-slack/</link><guid isPermaLink="false">30ad9f1c-abac-46d1-87f4-4ac940168246</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Tue, 01 Mar 2016 09:45:37 GMT</pubDate><content:encoded><![CDATA[<p>ì§€ê¸ˆ ì¼í•˜ëŠ” ê³³ì—ì„œ ì•½ 3ê°œì›” ì „ì— ìŠ¬ëž™ì„ ë„ìž…í•˜ì˜€ë‹¤. ì²˜ìŒì— ëª‡ì£¼ ì •ë„ ë¬´ë£Œë¡œ ì¨ë³´ê³ , integration ì˜ì¡´ì„±ì´ ë†’ì•„ì§€ê³  ê³¼ê±° ëŒ€í™” ê²€ìƒ‰ì´ í•„ìš”í•´ì§€ë©´ì„œ ê²°êµ­ ìœ ë£Œë¡œ ì „í–¥.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/03/slack.jpg" alt="Slack ìŠ¤í¬ë¦°ìƒ·"></p>

<p>ì´ì „ì— ì‚¬ìš©í•˜ë˜ê²ƒì€ Skype. ì „ë°˜ì ìœ¼ë¡œëŠ” ë¬¸ì œê°€ ì—†ì—ˆìœ¼ë‚˜, ë‹¤ì†Œ ì‹ ê²½ì“°ì´ëŠ” ë¬¸ì œë“¤ì´ ìžˆì—ˆëŠ”ë°:</p>

<ol>
<li>ëª¨ë°”ì¼ í´ë¼ì´ì–¸íŠ¸ê°€ ë°°í„°ë¦¬ë¥¼ ë„ˆë¬´ ë§Žì´ ë¨¹ëŠ”ë‹¤.  </li>
<li>ë°ìŠ¤í¬íƒ‘ì—ì„œëŠ” P2P ë„¤íŠ¸ì›Œí¬ì˜ bridge nodeë¡œ ê¸°ë³¸ìœ¼ë¡œ ì‚¬ìš©í•˜ê¸° ë•Œë¬¸ì—, í…Œë”ë§í• ë•Œ ì•ˆë„ë©´ í›„íšŒí•  ì¼ì´ ë°œìƒí•œë‹¤.  </li>
<li>ìƒëŒ€ê°€ ì˜¤í”„ë¼ì¸ì¼ë•Œ ë©”ì‹œì§€ë¥¼ ë³´ë‚´ê³  ë‚´ê°€ ì˜¤í”„ë¼ì¸ì´ ë˜ë©´, ìƒëŒ€ë°©ì´ ì´í›„ ë¨¼ì € ì˜¨ë¼ì¸ì´ ë˜ë”ë¼ë„ ë‚´ê°€ ì˜¨ë¼ì¸ì´ ë ë•Œê¹Œì§€ ë©”ì‹œì§€ ì „ë‹¬ì´ ë˜ì§€ ì•ŠëŠ”ë‹¤. (ë‹¨, ê·¸ë£¹ ëŒ€í™”ë°©ì˜ ê²½ìš°ëŠ” ê·¸ ë©”ì‹œì§€ë¥¼ ìˆ˜ì‹ í•œ ì‚¬ëžŒì´ í•œëª…ì´ë¼ë„ ìžˆê³  ì˜¨ë¼ì¸ì¼ ê²½ìš°ì—ëŠ” ì „ë‹¬ì´ ëœë‹¤.)  </li>
<li>íŒŒì¼ ë³´ë‚¸ê±´ ê·¸ë•Œ ë°”ë¡œ ì•ˆë°›ìœ¼ë©´ ëª»ë°›ëŠ”ë‹¤ê³  ë³´ë©´ ëœë‹¤.  </li>
<li>íŒŒì¼ ì „ì†¡ ì†ë„ì˜ íŽ¸ì°¨ê°€ ì‹¬í•˜ê³ , ê³µê³µ ë„¤íŠ¸ì›Œí¬ ê°™ì€ ê³³ (ì˜ˆë¥¼ ë“¤ë©´, ìŠ¤íƒ€ë²…ìŠ¤ Wifi) ì—ì„œ ìŠ¹ì¸ handshakeì‹œ ê°„í˜ˆì ìœ¼ë¡œ ë§ì½ì´ ë‚œë‹¤.  </li>
<li>ëŒ€í™”ë¡ì´ ë¡œì»¬ì— ì €ìž¥ë˜ê¸° ë•Œë¬¸ì— (ë³´ì•ˆ ì¸¡ë©´ì—ì„œëŠ” ì´ ë¶€ë¶„ì´ ë‚˜ì˜ë‹¤ê³  í•  ìˆ˜ ì—†ìœ¼ë‚˜, ëŒ€í™”ë¡ ë°±ì—…ì„ ì •ìƒì ì¸ ë°©ë²•ìœ¼ë¡œëŠ” ëª»í•˜ê³  exportë„ ì•ˆëœë‹¤) PCê°€ ë°”ë€” ê²½ìš° ê³¼ê±° ëŒ€í™” ê²€ìƒ‰ì´ ë¶ˆê°€ëŠ¥í•˜ë‹¤.  </li>
<li>ê·¸ ì™¸ ì‚¬ì†Œí•œê²ƒìœ¼ë¡œëŠ” ê°„í˜ˆì ì¸ ì´ì¤‘ í‘¸ì‹œ ë…¸í‹° ë¬¸ì œ, ë¡œê·¸ì•„ì›ƒ í›„ ë§ˆì§€ë§‰ ë¡œê·¸ì¸í–ˆë˜ ì•„ì´ë””ì˜ í‘¸ì‹œê°€ ì˜¤ëŠ” ë¬¸ì œ. (...ì´ê±´ ì‚¬ì†Œí•˜ì§€ëŠ” ì•Šë‹¤. iOSì—ì„œ ë°œìƒí•˜ëŠ” ë¬¸ì œì´ë©°, AndroidëŠ” í•´ë‹¹ì´ ì—†ëŠ” ë“¯ í•˜ë‹¤.)</li>
</ol>

<p>ì´ëŸ¬í•œ ë¬¸ì œ ë“±ìœ¼ë¡œ IRC (via IRCCloud), Campfire ë“±ì„ ì‹œë„í•˜ì˜€ëŠ”ë° ì—¬ëŸ¬ê°€ì§€ë¡œ ë°˜ì‘ì´ ì¢‹ì§€ ì•Šì•„ (ì‚¬ìš©ë¥ ì´ ëŒ€ë‹¨ížˆ ì €ì¡°í–ˆë‹¤) ê²°êµ­ì—ëŠ” ì„œë¹„ìŠ¤ë¥¼ ì¤‘ë‹¨í•˜ê³  (ìžì²´ IRC ì„œë²„ë¥¼ ìš´ì˜í–ˆì—ˆë‹¤) ë‹¤ì‹œ Skypeë¥¼ ë³µê·€ë¥¼ í–ˆë‹¤ê°€, ìµœê·¼ì— ë§Žì´ë“¤ ì‚¬ìš©í•˜ëŠ” Slackì„ ì‹œë„í•´ë³´ê¸°ë¡œ í•˜ì˜€ë‹¤.</p>

<p>ë‹¤ë¥¸ í›„ë³´ë“¤ë„ ìžˆì—ˆë‹¤.</p>

<ul>
<li>IRC / IRCCloud: ë„ìž… ì‹¤íŒ¨ ì´ë ¥ì´ ìžˆì–´ ìŠ¤í‚µ.</li>
<li>Campfire: ë„ìž… ì‹¤íŒ¨ ì´ë ¥ì´ ìžˆì–´ ìŠ¤í‚µ.</li>
<li>Hipchat: ì§€ê¸ˆ ë‹¤ë‹ˆëŠ” ëŒ€í•™ì›ì—ì„œ ì‚¬ìš©ì¤‘. UXê°€ ì¼ë‹¨ ìƒë‹¹ížˆ ë³„ë¡œê³ , Atlassian ID ë˜ëŠ” Bitbucket IDê°€ ì´ë¯¸ ìžˆì„ ê²½ìš° ê³¨ì•„í”ˆ ì¸ì¦ì‹œìŠ¤í…œ ë²„ê·¸ ë•Œë¬¸ì— ê³ ìƒí•œ ì ì´ ìžˆì–´ ì¼ë‹¨ ë°°ì œí•´ë²„ë ¸ë‹¤. ìž¥ì ì€ (ìœ ë£Œ í”Œëžœì— í•œí•˜ì—¬) ì˜ìƒ í†µí™”ë‚˜ í™”ë©´ ê³µìœ ê°€ ë˜ëŠ”ë°, ì´ê²Œ ì–¼ë§ˆë‚˜ ìž˜ë˜ëŠ”ì§€ëŠ” ì‹œë„í•´ë³´ì§€ ì•Šì•„ ëª¨ë¥´ê² ë‹¤. (JIRA cloud ì„±ëŠ¥ì„ ìƒê°í•˜ë©´, ì„œë²„ ì¤‘ê°œì‹ìœ¼ë¡œ Atlassian ì„œë²„ë¥¼ ê²½ìœ í•œë‹¤ë©´ ì„œë¹„ìŠ¤ í’ˆì§ˆì— ëŒ€í•´ì„œ ì¡°ê¸ˆ ê±±ì •ì´ ë˜ê¸°ëŠ” í•œë‹¤.)</li>
<li>ìž”ë””: íŒŒì¼ ê³µìœ ê°€ ë©”ì¸ ê¸°ëŠ¥ì´ê³ , Integrationì´ êµ¬ê¸€ ìœ„ì£¼ë¼ íŒ¨ìŠ¤.</li>
<li>Zulip: ë¬´ë£Œë¡œ ì‚¬ìš©ì´ ê°€ëŠ¥í•˜ê³ , ì´ëŸ° ì €ëŸ° ì¸¡ë©´ì—ì„œ ê½¤ ê°•ë ¥í•œ í›„ë³´ì˜€ìœ¼ë‚˜ ê³µêµë¡­ê²Œë„ ë„ìž… ê²€í†  ì‹œì ì—ëŠ” ëª¨ë°”ì¼ í´ë¼ì´ì–¸íŠ¸ê°€ ì œëŒ€ë¡œ ë¹Œë“œê°€ ì•ˆë˜ì—ˆë‹¤.</li>
</ul>

<p>ìš°ì„ , ë„ìž…ì‹œë„ì‹œì—ëŠ” ì˜ˆì™¸ì—†ì´ ì „ì› ì „í–¥í•˜ê³  Skypeë¥¼ ë²„ë¦¬ëŠ” í˜•íƒœë¡œ í–ˆëŠ”ë°, ì „í™˜ì€ ê½¤ ë§¤ë„ëŸ½ê²Œ ë˜ì—ˆê³ , ì‚¬ìš©ë¥ ë„ ë§¤ìš° ë†’ì•˜ë‹¤. (<strong>ì—­ì‹œ UIê°€ ì´ì˜ê³  ë´ì•¼í•œë‹¤.</strong>) ì§€ê¸ˆ ë„ìž… ë§Œì¡±ë„ê°€ ë†’ê³ , ìƒë‹¹ëŸ‰ì˜ ì»¤ë®¤ë‹ˆì¼€ì´ì…˜ì´ ê·¸ ì•ˆì—ì„œ ë°œìƒí•œë‹¤. ëŒ€ì™¸ ì»¤ë®¤ë‹ˆì¼€ì´ì…˜ì´ë‚˜ ê¸°ë¡ì´ í™•ì‹¤ížˆ ë‚¨ì•„ì•¼í•˜ëŠ” ê²½ìš°ì—ëŠ” ì•„ì§ë„ ë©”ì¼ì„ ì‚¬ìš©í•˜ê³ , ê·¸ ì™¸ ìƒë‹¹ëŸ‰ ì»¤ë®¤ë‹ˆì¼€ì´ì…˜ì€ ê¸°ë¡ ì—†ì´ êµ¬ë‘ë¡œ ë°œìƒí•œë‹¤. í›„ìžëŠ” ì›ê²© ê·¼ë¬´ìž ë°–ì— ì—†ëŠ” íšŒì‚¬ë¥¼ ì°¨ë¦¬ì§€ ì•ŠëŠ” ì´ìƒì€, í•œêµ­ ì‚¬ëžŒ íŠ¹ì„±ìƒ ì—†ì–´ì§€ê¸°ëŠ” ì–´ë ¤ìš¸ ë“¯.</p>

<p>ìž˜ ë‚˜ê°€ëŠ” ì• ë“¤ ë‹¤ë“¤ ì“´ë‹¤ë‹ˆê¹Œ ì‚¬ëžŒë“¤ì´ ë°˜ì‘ì´ ì¢‹ì•˜ë˜ê²ƒì¼ì§€ë„ ëª¨ë¥¸ë‹¤ëŠ” ìƒê°ì´ ì¡°ì‹¬ìŠ¤ëŸ½ê²Œ ë“¤ê¸°ëŠ” í–ˆë‹¤. ì‹¬ì§€ì–´ ìµœê·¼ì— êµ¬ê¸€ ì•ˆì—ì„œë„ ìŠ¬ëž™ì„ ì‚¬ìš©í•˜ëŠ” íŒ€ì´ ìžˆë‹¤ í•œë‹¤.</p>

<p>ì¼ë‹¨ ìŠ¬ëž™ì˜ ê°€ìž¥ í° ìž¥ì ì€ Botì„ ì§ì ‘ ì§œê±°ë‚˜ í•˜ì§€ ì•Šë”ë¼ë„ ë°”ë¡œ ì‚¬ìš©í•  ìˆ˜ ìžˆëŠ” integrationì´ ë§Žë‹¤ëŠ” ê²ƒì´ë‹¤. í˜„ìž¬ ì‚¬ìš©ì¤‘ì¸ Appì€ 10ê°œ, ê·¸ ì•ˆì— integrationì€ ì •í™•ížˆ ëª¨ë¥´ê² ìœ¼ë‚˜, ê½¤ ë§Žë‹¤. ìžì²´ì ìœ¼ë¡œ Botì„ ëŒë¦¬ê³  ìžˆëŠ”ê²ƒë“¤ë„ ìžˆë‹¤. ìµœê·¼ì—ëŠ” í•œìž”ì”© ë‚´ë¦´ ìˆ˜ ìžˆëŠ” ê¸°ê³„ë¥¼ ì‚¬ì„œ ì•ˆì“°ì´ì§€ë§Œ, ì´ì „ì— ì•„ì¹¨ì— ì»¤í”¼ ë‹¹ë²ˆë„ Slack Botìœ¼ë¡œ ì •í–ˆì—ˆë‹¤. (ì‚¬ì‹¤ì€ ë¶ˆê³¼ 3ì£¼ì „ê¹Œì§€ì˜ ì´ì•¼ê¸°ì´ë‹¤. ì‚¬ì‹¤ ì»¤í”¼ëŠ” í•‘ê³„ì˜€ê³ , ì‹ ìž… ì§ì›ì—ê²Œ load balancerì—ì„œ ì‚¬ìš©í•  queueing ì•Œê³ ë¦¬ì¦˜ì„ ê³ ë¯¼ì‹œí‚¤ê¸° ìœ„í•¨ì´ì—ˆë‹¤.)</p>

<p>í˜„ìž¬ ì—…ë¬´ ì§€ì› ìš©ë„ë¡œëŠ” ë‹¤ìŒ ê¸°ëŠ¥ë“¤ì„ ì‚¬ìš©í•˜ê³  ìžˆë‹¤.</p>

<ul>
<li>ì„œë¹„ìŠ¤ ìž¥ì• /ì˜¤ë¥˜/ê´€ë¦¬ìž ì†ê¸¸ì´ í•„ìš”í•œ ìƒí™© ë³´ê³ </li>
<li>ìŠ¤í† ë¦¬ì§€ ìž¥ë¹„ ì˜¤ë¥˜ ë³´ê³ </li>
<li>Teamcity Continuous Integration</li>
<li>JIRA</li>
<li>Trello (ì§€ê¸ˆì€ ëŒ€ë¶€ë¶„ JIRAë¡œ ë„˜ì–´ê°”ë‹¤.)</li>
<li>Google Calendarë¡œ ì¼ì •/íœ´ê°€ ê´€ë¦¬ ë° reminder</li>
</ul>

<p>ì¼ë‹¨ì€ ìž‘ì€ íšŒì‚¬ì¸ ë§Œí¼ í•œ ì‚¬ëžŒì´ í•œê°€ì§€ ì¼ë§Œ í•˜ì§€ëŠ” ì•ŠëŠ”ë‹¤. ìŠ¬ëž™ ë•ë¶„ì— ë‚´ë¶€ì—ì„œ ì¼ì–´ë‚˜ëŠ”ê²ƒ ìƒë‹¹ëŸ‰ì„ ëª¨ë‘ê°€ ê´€ë ¨ ì±„ë„ì— ë“¤ì–´ê°€ ìžˆìœ¼ë©´ ì•Œ ìˆ˜ ìžˆë‹¤ëŠ”ê±´ ê³µê°œì„± ì¸¡ë©´ì—ì„œ ê¸ì •ì ì¸ íš¨ê³¼ë¥¼ ë³¼ ìˆ˜ ìžˆì—ˆë‹¤. ì»¤ì§€ë©´ ì–´ë–¨ì§€ëŠ” ê²ªì–´ë´ì•¼ ì•Œ ë“¯.</p>

<p><a href="https://github.com/Ullink/simple-slack-api">simple-slack-api</a> ë¼ëŠ”ê²ƒì„ ì´ìš©í•˜ì—¬ ê¸°ë³¸ì ì¸ ê³¨ê²©ì€ ì •ë§ ê¸ˆë°© ë§Œë“¤ ìˆ˜ ìžˆì—ˆë‹¤. ì´ì „ì— TCLë¡œ Eggdrop ì‚½ì§ˆ í•˜ë˜ ì‹œì ˆ ìƒê°í•˜ë©´ ì„¸ìƒ ì°¸ ì¢‹ì•„ì§„ ê²ƒ ê°™ë‹¤. (ì˜ˆì œëŠ” Kotlinì´ë‚˜, ì‹¤ì œ ìš´ì˜ì¤‘ì¸ botì€ ê·¸ëƒ¥ Javaì´ë‹¤.)</p>

<pre><code>package com.oddconcepts.coffeebot
import com.ullink.slack.simpleslackapi.impl.SlackSessionFactory

fun main(args: Array&lt;String&gt;) {
    val session = SlackSessionFactory.createWebSocketSlackSession(kKey);
    session.connect();
    session.addMessagePostedListener({ posted, session -&gt;
        if (posted.sender.userName == kUserName)
            session.sendMessage(posted.channel, "Testing", null);
    });
}
</code></pre>

<p>ì§€ê¸ˆê¹Œì§€ ìž¥ì ì„ ì¢€ ì •ë¦¬í•˜ìžë©´:</p>

<ol>
<li>Integrationì´ ê¸°ë³¸ ì§€ì›ë˜ëŠ”ê²Œ ë§Žì•„ ê·¸ëƒ¥ í¼ ëª‡ê°œ ì±„ìš°ëŠ”ê±°ë§Œìœ¼ë¡œ ì„œë¹„ìŠ¤ ì—°ê³„ê°€ ê°€ëŠ¥í•˜ë‹¤.  </li>
<li>ì‹œìŠ¤í…œì´ í†µë³´ë¥¼ í•´ì¤˜ì•¼í•˜ëŠ”ë° ë‹´ë‹¹ìž í•œëª…ë§Œ ì´ ë‚´ìš©ì„ ì•Œê³  ìžˆëŠ” í™˜ê²½ì„ ì „ì› ê³µìœ  í™˜ê²½ìœ¼ë¡œ ì˜¤í”ˆëœ ì—…ë¬´ ë¬¸í™”ë¥¼ ë§Œë“¤ ìˆ˜ ìžˆë‹¤. (ì´ê±´ ì¡°ì§ ê·œëª¨ì— ë”°ë¼ ì ì ˆí•˜ê²Œ ì‚¬ìš©í•˜ê¸° ë‚˜ë¦„ì´ì§€ë§Œ.)  </li>
<li>Bot ê°œë°œì´ íŽ¸í•˜ë‹¤.  </li>
<li>UIê°€ ë‹¤ë¥¸ ì—”í„°í”„ë¼ì´ì¦ˆ ë©”ì‹œì§• ì„œë¹„ìŠ¤ì— ë¹„í•´ì„œëŠ” ë‹¤ê°€ê°€ê¸° ì‰½ë‹¤.  </li>
<li>ì¤‘ê°œ ì„œë²„ê°€ ìžˆì–´ ëŒ€í™”ì°½ì—ì„œ íŒŒì¼ ê³µìœ ê°€ ë§¤ìš° ì•ˆì •ì ìœ¼ë¡œ ëœë‹¤.</li>
</ol>

<p>ì •ë„ê°€ ë  ê²ƒ ê°™ë‹¤.</p>

<p>ìž¥ì ì„ ì´ì•¼ê¸°í–ˆìœ¼ë‹ˆ, ì´ì œëŠ” ë‹¨ì . ëª¨ë“ ê²Œ ì™„ë²½í•  ìˆ˜ëŠ” ì—†ìœ¼ë‹ˆ ì´ ë¶€ë¶„ì— ëŒ€í•´ì„œëŠ” í™•ì‹¤ížˆ ì§šê³  ë„˜ì–´ê°ˆ í•„ìš”ê°€ ìžˆë‹¤.</p>

<p>ìš°ì„ , ê°€ìž¥ í° ë¬¸ì œ. ë°ìŠ¤í¬íƒ‘ í´ë¼ì´ì–¸íŠ¸ì˜ ì „ë°˜ì ì¸ í¼í¬ë¨¼ìŠ¤ ë¬¸ì œì™œ ë°°í„°ë¦¬ ì†Œëª¨ëŸ‰ ë¬¸ì œëŠ” ê·¼ì‹œì¼ ë‚´ì— í•´ê²°ë˜ì§€ ì•Šìœ¼ë©´ ì„œë¹„ìŠ¤ì˜ ì‹¤íŒ¨ ìš”ì¸ì´ ë  ìˆ˜ ìžˆì„ ì •ë„ë¡œ ì‹¬ê°í•˜ë‹¤. ë§Œì•½ì— ì „ë¶€ ë„¤ì´í‹°ë¸Œë¡œ í•´ê²°ì„ ë³´ê³  ê¸°ëŠ¥ìƒ ë™ì¼í•œ ìˆ˜ì¤€ì„ ì œê³µí•˜ëŠ” ì„œë¹„ìŠ¤ê°€ ë‚˜ì˜¨ë‹¤ë©´ ì‹œìž¥ì„ ê½¤ ëºì–´ê°ˆ ìˆ˜ ìžˆì§€ ì•Šì„ê¹Œ ì‹¶ì„ ì •ë„. ì¹´íŽ˜ ê·¼ë¬´ì‹œì—ëŠ” ì•„ì˜ˆ í´ë¼ì´ì–¸íŠ¸ë¥¼ êº¼ë‘ê³  ëª¨ë°”ì¼ í‘¸ì‹œë§Œ ë³´ë©´ì„œ ì¼í•  ì •ë„ë¡œ ë°°í„°ë¦¬ ìˆ˜ëª…ì— ì§€ìž¥ì„ ì¤€ë‹¤.</p>

<p>ë¸Œë¼ìš°ì € ê¸°ë°˜ì´ë¼ì„œëŠ” ì‚¬ì‹¤ Slackì˜ ì‚¬ì •ì´ê³ , ì´ ë¶€ë¶„ì€ ì ˆì‹¤í•˜ê²Œ ê°œì„ ì´ í•„ìš”í•˜ë‹¤.</p>

<p><img src="https://stdio.sangwhan.com/content/images/2016/03/Screen-Shot-2016-03-01-at-13-13-50.jpg" alt="ì´ ê¸€ì„ ì“°ëŠ” í˜„ìž¬ ë°±ê·¸ë¼ìš´ë“œë¡œ ëŒê³  ìžˆëŠ” Slackì˜ ë°°í„°ë¦¬ ì‚¬ìš© ì •ë„"></p>

<p>(ìœ„ì—ì„œ Safariê°€ ê°€ìž¥ ë§Žì´ ì°¨ì§€í•˜ê³  ìžˆëŠ” ì´ìœ ëŠ” ì´ ê¸€ì„ ì‚¬íŒŒë¦¬ì—ì„œ ìž‘ì„±í•˜ê³  ìžˆê¸° ë•Œë¬¸ì´ë‹¤. ìŠ¬ëž™ì€ ì‚¬ìš©í•˜ì§€ë„ ì•Šì•˜ë‹¤.)</p>

<p>ê·¸ë¦¬ê³  êµ¬ê¸€ì„ ì œì™¸í•œ ëŒ€ë¶€ë¶„ ì™¸êµ­ ì„œë¹„ìŠ¤ì— ê³µí†µë˜ëŠ” ë¬¸ì œì´ë‚˜, í•œê¸€ ê²€ìƒ‰ì´ ìƒë‹¹ížˆ ë¬¸ì œê°€ ìžˆê³  ì•„ìš¸ëŸ¬ ì˜ì–´ ê²€ìƒ‰ë„ ë”±ížˆ ì¢‹ì§€ëŠ” ì•Šë‹¤. ê³¼ê±° ëŒ€í™”ë¡ ê²€ìƒ‰ì—ì„œ ê²°êµ­ ì›í•˜ë˜ê²ƒì„ ì°¾ì§€ ëª»í•˜ì—¬ ìŠ¤í¬ë¡¤ë¡œ ì°¾ì€ ì ì´ ì œë²• ìžˆì—ˆìœ¼ë‹ˆ, ê²€ìƒ‰ì€ ì‚¬ì‹¤ìƒ í¬ê¸°í•˜ëŠ”ê²Œ ë‚˜ì„ìˆ˜ë„ ìžˆë‹¤. (ì´ê±´ Confluenceë‚˜ JIRA ê°™ì€ ê²½ìš°ì—ë„ í•´ë‹¹ë˜ëŠ” ë¬¸ì œì´ë‹¤)</p>

<p>Snippet (Command+ì—”í„°ë¡œ ê¸´ ê¸€ ë¶™ì—¬ë„£ê¸°) ì²˜ë¦¬ê°€ ìƒë‹¹ížˆ ëŠë¦¬ë‹¤. ë§Œì•½ì— ë¹Œë“œ ë¡œê·¸ ê°™ì€ê±¸ ë¶™ì—¬ë„£ì„ ê²½ìš° ê·¸ê±¸ ë¶ˆëŸ¬ì˜¬ë•Œ í´ë¼ì´ì–¸íŠ¸ê°€ ë©ˆì¶”ëŠ” ìˆ˜ì¤€ìœ¼ë¡œ ëŠë ¤ì¡Œë‹¤ê°€ ê°„ì‹ ížˆ í‘œì‹œëœë‹¤ëŠ” ëŠë‚Œì„ ë°›ì•˜ëŠ”ë°, ë§¤ë²ˆ ë‹¤ìš´ë¡œë“œë¥¼ ë°›ì•„ì„œ ë´ì•¼í•˜ëŠ” ë¶ˆíŽ¸í•¨ì´ ìžˆë‹¤.</p>

<p>IFTTTì¸í…Œê·¸ë ˆì´ì…˜ì— ì˜ì¡´í•œë‹¤ë©´ ê·¸ëƒ¥ ìžŠê³  ì‚¬ëŠ”ê²Œ íŽ¸í•˜ë‹¤. ì²˜ìŒì— ë‘ë²ˆ ì •ë„ ë™ìž‘í•˜ê³  ê·¸ ë’¤ë¡œëŠ” ë™ìž‘í•˜ëŠ” ê²ƒì„ ë³¸ ì ì´ ì—†ë‹¤. ì´ê²Œ ì—…ë¬´ìƒ ì¤‘ìš”í•œ ê¸°ëŠ¥ì´ ì•„ë‹Œì§€ë¼ (í…€ë¸”ëŸ¬ ì—°ë™) IFTTTì˜ ë¬¸ì œì¸ì§€ Slackì˜ ë¬¸ì œì¸ì§€ëŠ” í™•ì¸í•´ë³´ì§€ ì•Šì•˜ìœ¼ë‚˜, ì—”ë“œìœ ì € ìž…ìž¥ì—ì„œ ë´¤ì„ë•ŒëŠ” ê·¸ ë¬¸ì œê°€ ì–´ë”” ìžˆëŠ”ì§€ëŠ” ì‚¬ì‹¤ ê´€ì‹¬ì´ ì—†ë‹¤. ëœë‹¤ ì•ˆëœë‹¤ì—ë§Œ ê´€ì‹¬ì´ ìžˆëŠ”ë°, ê²½í—˜ìƒìœ¼ë¡œëŠ” ì•ˆëœë‹¤.</p>

<p>ë¹„ì‹¸ë‹¤. ìš°ë¦¬ ê°™ì€ ê²½ìš° ì‚¬ëžŒ ìˆ˜ê°€ ì ì–´ í¬ê²Œ ë¶€ë‹´ë˜ëŠ” ê¸ˆì•¡ì€ ì•„ë‹ˆì§€ë§Œ, ë©”ì‹ ì € ì£¼ì œì— Google Apps for Workë³´ë‹¤ ë†’ì€ ê¸ˆì•¡ì„ ì§€ë¶ˆí•´ì•¼í•˜ëŠ”ê±´ ì‚¬ì‹¤ ê°€ê²©ëŒ€ ì„±ëŠ¥ë¹„ê°€ ì¢‹ë‹¤ê³  í•  ìˆ˜ëŠ” ì—†ë‹¤. 100ëª… ìžˆëŠ” ì¡°ì§ì´ë¼ê³  í•˜ë©´, 1ë…„ì— ë©”ì‹ ì € ì‚¬ìš©ë£Œê°€ 1000ë§Œì›ì´ë¼ëŠ” ì´ì•¼ê¸°ë‹¤. ì•„ì£¼ í° ëˆì€ ì•„ë‹ˆì§€ë§Œ, ë‹¤ë¥¸ ë¬´ë£Œ ëŒ€ì•ˆì´ ìžˆëŠ”ê±¸ ê°ì•ˆí–ˆì„ë•ŒëŠ” ë¶„ëª…ížˆ ë¶€ë‹´ë˜ëŠ” ë¹„ìš©.</p>

<p>ë‹¨ì¶•í‚¤ê°€ í¬í•œí•˜ê³  (OS í‘œì¤€í•˜ê³ ëŠ” ì¢€ ì•ˆë§žëŠ”ë‹¤) ì»¤ìŠ¤í„°ë§ˆì´ì§•ì´ ì•ˆëœë‹¤. ë‚˜ì˜ ê²½ìš°, <strong>Command + Alt + ë°©í–¥í‚¤</strong>ì™€ <strong>Command + Shift + []</strong>ë¥¼ ì‚¬ìš©í•˜ëŠ” íˆ´ ëŒ€ë¶€ë¶„ì—ì„œ êµ‰ìž¥ížˆ ë§Žì´ ì‚¬ìš©í•œë‹¤. ë¬¸ì œëŠ”, ì´ê²Œ ë™ìž‘í•˜ëŠ” ë°©ì‹ì´ ìŠ¬ëž™ì—ì„œëŠ” êµ‰ìž¥ížˆ ì´ìƒí•œë° (íŠ¹ížˆ <strong>Command + Alt + ë°©í–¥í‚¤</strong>) ì›í•˜ëŠ” ê¸°ëŠ¥ì˜ ë‹¨ì¶•í‚¤ëŠ” <strong>Alt + ìœ„/ì•„ëž˜</strong> ì´ë‹¤.</p>

<p>ë‹¤ì¡°ì§ì„ ì‚¬ìš©í•˜ëŠ” ê²½ìš°, ì¸ì¦ ì‹œìŠ¤í…œì´ ìƒë‹¹ížˆ ì•¼ë¦¬ê¾¸ë¦¬í•˜ë‹¤. ì–´ì°¨í”¼ ê°™ì€ ë°±ì—”ë“œì¼í…ë°, ê°™ì€ ë©”ì¼ ì£¼ì†Œ, í—ˆë‚˜ ë‹¤ë¥¸ ë¹„ë°€ë²ˆí˜¸ë¡œ ë‹¤ë¥¸ ì¡°ì§ 2ê°œì— ê°€ìž…ì´ ê°€ëŠ¥í•˜ë‹¤. ìœ ì € ë§¤í•‘ìƒ ì¡°ì§ ê°€ìž… ì—¬ë¶€ë§Œ ê¸°ë¡í•´ë‘ë©´ ë  ê²ƒ ê°™ì€ë° êµ³ì´ ì´ëŸ° í˜•íƒœë¡œ êµ¬í˜„í•œ ì´ìœ ì— ëŒ€í•´ì„œëŠ” ì¡°ê¸ˆ ì´í•´ê°€ ì•ˆë˜ëŠ” ì ì€ ìžˆë‹¤.</p>

<p>ê·¸ë¦¬ê³  ë§ˆì§€ë§‰ìœ¼ë¡œ, ê°œì¸ì ì¸ ì·¨í–¥ì˜ ë¬¸ì œì´ì§€ë§Œ í…Œë§ˆ ê¸°ëŠ¥ì´ ìƒë‹¹ížˆ ë¯¸í¡í•˜ë‹¤. ì‚¬ì´ë“œë°” ìƒ‰ê¹”ì€ ë³€ê²½í•  ìˆ˜ ìžˆìœ¼ë‚˜, ëˆˆì´ ì•„íŒŒì„œ ì–´ë‘ìš´ ë°°ê²½ì„ ì„ í˜¸í•˜ëŠ” ì‚¬ëžŒí•œí…ŒëŠ” ì¥ì•½ì´ë‹¤. ì´ê±¸ í•´ê²°í•˜ëŠ” ë°©ë²•ì€ Greasemonkey ìŠ¤í¬ë¦½íŠ¸ ê°™ì€ê±¸ ì´ìš©í•˜ëŠ” ê²ƒì¸ë°, ì´ê²ƒ ë§ˆì €ë„ ì»¤ìŠ¤í…€ MacGap ê¸°ë°˜ì¸ ë§¥ ë²„ì „ì—ì„œëŠ” ì‚¬ìš©í•  ìˆ˜ ì—†ë‹¤. ì‚¬ì‹¤ ì‚¬ì´ë“œë°”ë§Œ ìƒ‰ìƒ ë³€ê²½ ê°€ëŠ¥í•œê±´ ë¬´ìŠ¨ ì˜ë¯¸ì¸ê°€ ì‹¶ê¸°ë„ í•˜ë‹¤.</p>

<p>ì‚¬ìš©í• ì§€ ë§ì§€ëŠ” ì–´ë””ê¹Œì§€ë‚˜ íŒ€ì˜ ì„±í–¥ê³¼ ì»¤ë®¤ë‹ˆì¼€ì´ì…˜ ìŠ¤íƒ€ì¼, ê·¸ë¦¬ê³  íŠ¹ížˆ íƒ€ ì„œë¹„ìŠ¤ì™€ ì—°ë™ì˜ í•„ìš”ì„±ì— ë”°ë¼ ë‹¬ë ¤ìžˆëŠ”ê²ƒ ê°™ë‹¤. ì™„ë²½í•˜ì§€ëŠ” ì•Šì§€ë§Œ, ì„±í–¥ì´ ë§žë‹¤ë©´ ì¨ë³¼ ë§Œí•œ íˆ´.</p>

<p>ì“¸ë°ì—†ëŠ” ì‚¬ì‹¤: Slack ë°±ì—”ë“œ ìŠ¤íƒì˜ ìƒë‹¹ëŸ‰ì€ PHP(?!)ìž„.
ì“¸ë°ì—†ëŠ” ì‚¬ì‹¤2: êµ¬ê¸€ ì¸ì¦ Slack ì¡°ì§ì— ê°€ìž…í–ˆë‹¤ê°€ í•´ë‹¹ êµ¬ê¸€ ê³„ì •ì— ëŒ€í•œ ê¶Œí•œì„ ìƒì‹¤í•˜ë©´ í´ë¼ì´ì–¸íŠ¸ì—ì„œ ë¡œê·¸ì•„ì›ƒì´ ì˜ì›ížˆ ë¶ˆê°€ëŠ¥í•œ ë²„ê·¸ê°€ ìžˆë‹¤.</p>]]></content:encoded></item><item><title><![CDATA[ì§€ê·¹ížˆ ê°œì¸ì ì¸ ì´ì–´í°/í—¤ë“œí° ë¦¬ë·° (ê³ ê°€íŽ¸)]]></title><description><![CDATA[<p>ì €ê°€ ì¤‘ì—ì„œ ì§€ê¸ˆ ì•„ì§ ë°°ì†¡ì¤‘ì¸ ì œí’ˆì´ ë‘ê°œ ìžˆì–´ì„œ ì¼ë‹¨ì€ ê³ ê°€ë§Œ ë”°ë¡œ ì°¢ì–´ì„œ ë¨¼ì € ìž‘ì„±í•´ë³´ì•˜ë‹¤. ì—¬ê¸°ì— ìžˆëŠ”</p>]]></description><link>https://stdio.sangwhan.com/earphones-compared/</link><guid isPermaLink="false">aa50b7e0-7856-4cea-b8aa-6b7221d992c5</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Fri, 27 Nov 2015 05:35:00 GMT</pubDate><content:encoded><![CDATA[<p>ì €ê°€ ì¤‘ì—ì„œ ì§€ê¸ˆ ì•„ì§ ë°°ì†¡ì¤‘ì¸ ì œí’ˆì´ ë‘ê°œ ìžˆì–´ì„œ ì¼ë‹¨ì€ ê³ ê°€ë§Œ ë”°ë¡œ ì°¢ì–´ì„œ ë¨¼ì € ìž‘ì„±í•´ë³´ì•˜ë‹¤. ì—¬ê¸°ì— ìžˆëŠ” ì œí’ˆ ìƒë‹¹ìˆ˜ëŠ” ê¸°í˜¼ìžì˜ ê²½ìš° í—ˆë½ì„ ë°›ì§€ ì•Šê³  êµ¬ë§¤í–ˆë‹¤ê°€ ì³ë§žì„ ê°€ëŠ¥ì„±ì´ ìžˆëŠ” ê°€ê²©ëŒ€ë¥¼ ê°–ê³  ìžˆëŠ” ì œí’ˆì´ ì¢€ ìžˆìœ¼ë¯€ë¡œ ì£¼ì˜ê°€ í•„ìš”í•˜ë‹¤.</p>

<p>ë³„ì ì€ ì†Œë¦¬ ì™¸ ì‹¤ìš©ì„±ê¹Œì§€ í¬í•¨ë˜ì—ˆìœ¼ë¯€ë¡œ ì†Œë¦¬ì— ëŒ€í•´ì„œë§Œ ë³´ê³  ì‹¶ìœ¼ë©´ ì¸¡ì • ê²°ê³¼ë¥¼ ë³´ëŠ” ê²ƒì„ ì¶”ì²œí•œë‹¤.</p>

<h3 id="audiotechnicaathm50x">Audio Technica ATH-M50(X)</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/ath_m50x_2_sq.jpg" alt="ATH-M50X"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://www.audio-technica.com/cms/headphones/99aff89488ddd6b1/">http://www.audio-technica.com/cms/headphones/99aff89488ddd6b1/</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜†</li>
<li>ê°€ê²©: 25ë§Œì› ì „í›„.</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ìž„íŽ˜ë˜ìŠ¤ê°€ ë‚®ê³ , ì ‘ì´ì‹ì´ë¼ ê¸°ìˆ ì ìœ¼ë¡œëŠ” ê°€ëŠ¥í•˜ë‹¤.</li>
</ul>

<p>Over-the-ear í—¤ë“œí°. (<strong>í¬ë‹¤</strong>ë¼ê³  í•´ì„í•˜ë©´ ëœë‹¤.) ì˜¤ë””ì˜¤ í…Œí¬ë‹ˆì¹´ ì œí’ˆì€ ì €ê°€í˜•ê³¼ ì ë‹¹ížˆ ê°€ê²©ì´ ë‚˜ê°€ëŠ” ì œí’ˆí•˜ê³  ì°¨ì´ê°€ ë§Žì´ ë‚œë‹¤. M50 ì •ë„ê¹Œì§€ ì˜¬ë¼ê°€ëŠ” ì‹œì ë¶€í„° ê´œì°®ì€ ì†Œë¦¬ë¥¼ ê²½í—˜í•  ìˆ˜ ìžˆë‹¤. M50ì€ ì‚¬ì‹¤ ë‹¨ì¢…ë˜ì—ˆê³ , ì´ì „ì— ì¼€ì´ë¸” êµí™˜ì´ ë¶ˆê°€ëŠ¥í–ˆë˜ M50 ì œí’ˆì— ì¼€ì´ë¸” íƒˆì°©ì´ ê°€ëŠ¥í•˜ê²Œ í•˜ë©´ì„œ ê°€ê²©ì„ ì¢€ (ë§Žì´) ì˜¬ë¦° M50Xë¼ëŠ” ëª¨ë¸ì´ í˜„ìž¬ ìœ í†µì¤‘ì´ë‹¤. ì†Œë¦¬ ìžì²´ëŠ” ê¸°ì¡´ M50í•˜ê³  ê°™ìœ¼ë‹ˆ ê±°ì¹˜í˜•ìœ¼ë¡œ ì‚¬ìš©í•  ì˜ˆì •ì´ê³ , ì„ ì„ ìž˜ ê´€ë¦¬í•  ìˆ˜ ìžˆìœ¼ë©´ M50 ì¤‘ê³ ë¥¼ ì‚¬ë„ ëœë‹¤. ì´ë™í•˜ë©´ì„œ ì‚¬ìš©í•  ì˜ˆì •ì¼ ê²½ìš°, M50ì€ í’€ë¦° ì„ ì€ ì¸ì§ˆ ë‚©ì¹˜í•˜ê³  ë¬¶ì„ ì •ë„ì˜ ì„  ê¸¸ì´ë¥¼ ìžëž‘í•˜ê³ , ê¼¬ì¸ì„ ì€ ì„  ë¬´ê²Œê°€ ëŠê»´ì§€ëŠ” ë‹¨ì ì´ ìžˆìœ¼ë‹ˆ, ìžê¸ˆì˜ ì—¬ìœ ê°€ ëœë‹¤ë©´ M50Xë¥¼ ì‚¬ëŠ”ê²Œ ì¢‹ë‹¤. í•„ìš”í•œ ì„  ê¸¸ì´ë¡œ í•˜ë‚˜ ì‚¬ì„œ ë°”ê¿”ë¼ë©´ ë˜ë‹ˆ. ê°œì¸ì ìœ¼ë¡œëŠ” ì´ìƒí•˜ê²Œë„ ê¼¬ì¸ì„ ì´ 2000ì—” ìŒŒê¸° ë•Œë¬¸ì— M50 ê¼¬ì¸ì„ ì„ ì‚¬ìš©í•œë‹¤.</p>

<p>ì†Œë¦¬ëŠ” ì €ìŒì´ ì‚´ì§ ê°•í•œ ê°•í•œ ê°ì´ ìžˆì§€ë§Œ, ë‹¨ìˆœ ëª¨ë‹ˆí„°ê°€ ì•„ë‹Œ ì²­ìŒ ê²¸ìš©ìœ¼ë¡œ ì‚¬ìš©í•œë‹¤ë©´ í¬ê²Œ ë¬¸ì œê°€ ì•ˆë˜ê³  ê·¸ëž˜ë„ ë¹„êµì  ê· í˜•ê°ì´ ìžˆëŠ” ì†Œë¦¬ê°€ ë‚˜ì˜¤ëŠ” ì œí’ˆ. ê¸°ë³¸ìœ¼ë¡œ ë‹¬ë ¤ìžˆëŠ” ì´ì–´íŒ¨ë“œëŠ” ì—¬ë¦„ì— ë•€ì´ êµ‰ìž¥ížˆ ë§Žì´ ì°¬ë‹¤ëŠ” ë‹¨ì ê³¼ (ìˆœì •í’ˆìœ¼ë¡œ ë‚˜ì˜¤ëŠ” Velour ì†Œìž¬ì˜ ë³„ë§¤ ì´ì–´íŒ¨ë“œê°€ ìžˆëŠ”ë°, ì´ê²ƒë„ ë§ˆì°¬ê°€ì§€ë¡œ ë•€ì´ ì°¬ë‹¤. ê²Œë‹¤ê°€ ë•€ì„ í¡ìˆ˜ê¹Œì§€ í•˜ê¸° ë•Œë¬¸ì— ë‚˜ì¤‘ì— ëƒ„ìƒˆê°€ ë‚  ìš°ë ¤ë„ ìžˆë‹¤.) í—¤ë“œë°´ë“œê°€ ë‹¤ì†Œ ë¬´ê²ê³  ë‘”í•˜ê¸° ë•Œë¬¸ì— ì°©ìš©ì‹œì— ë¬´ê²Œê°ì´ ì¢€ ìžˆë‹¤ëŠ”ê²Œ ì‚¬ìš©ìžì— ë”°ë¼ ìž¥ì ë„ ë‹¨ì ë„ ë  ìˆ˜ ìžˆë‹¤. í¬ê¸°í•˜ê³  í—¤ë“œë°´ë“œ ë””ìžì¸ ë•Œë¬¸ì— ë•ë¶„ì— ë³„ì  í•˜ë‚˜ ëºë‹¤.</p>

<p>ë¯¸êµ­ì´ë‚˜ ì¼ë³¸ì—ì„œ ì‚´ ìˆ˜ ìžˆìœ¼ë©´ ì‹¸ê²Œ ì‚´ ìˆ˜ ìžˆìœ¼ë‹ˆ ë§Œì•½ì— ê·¸ë ‡ê²Œ ì‚´ ìˆ˜ ìžˆëŠ” ê²½ë¡œê°€ ìžˆë‹¤ë©´ ê°€ì„±ë¹„ ë©´ì—ì„œ ì´ ì œí’ˆ ë§Œí•œ ì œí’ˆ ì°¾ê¸°ê°€ ì‰½ì§€ëŠ” ì•Šì„ ê²ƒì´ë‹¤. ì•„ìš¸ëŸ¬ ì˜¤ë””ì˜¤ í…Œí¬ë‹ˆì¹´ëŠ” ì–´ëŠ ì •ë„ ìˆ˜ì¤€ì´ ë˜ëŠ” ì œí’ˆë¶€í„°ëŠ” ì™¸ì£¼ ìƒì‚°ì´ ì•„ë‹ˆë¼ ìžì²´ ìš´ì˜í•˜ëŠ” ëŒ€ë§Œ ê³µìž¥ì´ë‚˜ ì¼ë³¸ ê³µìž¥ì—ì„œ ìƒì‚°í•˜ë¯€ë¡œ, ì—¬ê¸°ì„œ ìƒì‚°í•˜ëŠ” ì œí’ˆì˜ í’ˆì§ˆì€ ë¯¿ì„ë§Œ í•˜ë‹¤.</p>

<p>ìž¥ì‹œê°„ ì°©ìš©í•´ë„ í”¼ë¡œí•˜ì§€ ì•Šê³ , ë°¸ëŸ°ìŠ¤ê°€ ì¢‹ì€ ì†Œë¦¬ë¥¼ ë‚´ì£¼ëŠ” ë§Œí¼ ë“£ëŠ”ë° ì§€ì¹˜ê±°ë‚˜ í•˜ì§€ ì•ŠëŠ”ë‹¤. ê°€ê²©ë„ ê·¸ëŸ­ì €ëŸ­ ë¬´ë‚œí•œ íŽ¸ì´ê³ , ê½¤ íŠ¼íŠ¼í•˜ê¸° ë•Œë¬¸ì— ì—…ë¬´ìš© í—¤ë“œí°ìœ¼ë¡œ ì¶”ì²œ. ì ‘ì´ì‹ì´ê¸´ í•˜ì§€ë§Œ, ì ‘ì–´ë„ ì‚¬ì´ì¦ˆê°€ ìƒë‹¹ížˆ í¬ê¸° ë•Œë¬¸ì— ì´ë™ìš©ìœ¼ë¡œëŠ” ì¡°ê¸ˆ ì• ë§¤í•œ ê°ì´ ìžˆë‹¤. (ì´ ì •ë„ ì†Œë¦¬ë¥¼ ë‚´ì£¼ëŠ” í—¤ë“œí° ì¤‘ì— ì´ ì •ë„ë¡œ 38ì˜´ ìˆ˜ì¤€ìœ¼ë¡œ ìž„í”¼ë˜ìŠ¤ê°€ ë‚®ì€ê²Œ ì—†ì–´ì„œ ì¡°ê¸ˆë§Œ ë” ìž‘ì•˜ìœ¼ë©´ ë§¤ìš° í›Œë¥­í•œ ì´ë™ìš©ì´ ë˜ì—ˆì„í…ë° í•˜ëŠ” ì•„ì‰¬ì›€ì´ ìžˆë‹¤.) ë§ˆì§€ë§‰ìœ¼ë¡œ ì¸¡ì • ê²°ê³¼ëŠ” <a href="http://ko.goldenears.net/board/index.php?mid=GR_Headphones&amp;search_target=title&amp;search_keyword=m50&amp;document_srl=5322081">ì—¬ê¸°</a>ì—.</p>

<h3 id="bangandolufsen3i">Bang and Olufsen 3I</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/earset_img.png" alt="Bang and Olufsen 3I"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://www.beoplay.com/products/beoplayearset3">http://www.beoplay.com/products/beoplayearset3</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜…</li>
<li>ê°€ê²©: 30ë§Œì› ì „í›„.</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ê°€ëŠ¥.</li>
</ul>

<p>ìœ„í—˜í•œ ê°€ê²©ëŒ€ì˜ ë””ìžì´ë„ˆ ì˜¤ë””ì˜¤ ì œí’ˆì„ ë§Žì´ ë§Œë“œëŠ” ë´ë§ˆí¬ íšŒì‚¬ì˜ ê·€ì— ê±°ëŠ” ì´ì–´í°. ì´ íšŒì‚¬ ê±°ì¹˜í˜• ì˜¤ë””ì˜¤ ì œí’ˆì€ í—ˆë½ ì—†ì´ ì„¸íŠ¸ êµ¬ì„±í–ˆë‹¤ê°€ ì¼ë°©ì ì¸ ì´í˜¼ í†µë³´ ë“±ì„ ê²½í—˜í•  ìˆ˜ ìžˆìœ¼ë‚˜, ë‹¤í–‰ížˆë„ íœ´ëŒ€ìš©ì€ ê·¸ ì •ë„ì˜ ê°€ê²©ì€ ì•„ë‹ˆë‹¤. ì•„ì‰¬ìš´ ì ì´ë¼ë©´ í˜„ìž¬ëŠ” ëª¨ë“  ì´ì–´í°/í—¤ë“œí° ì œí’ˆì„ <a href="https://namu.mirror.wiki/wiki/ëŒ€ë¥™#s-5">ê·¸ê³³</a>ì—ì„œ ë§Œë“ ë‹¤ëŠ” ê²ƒ. ì•„ìš¸ëŸ¬ í•œêµ­ë‚´ ì·¨ê¸‰ì ì´ ì ì–´ë³´ì¸ë‹¤. ê·¸ë ‡ë‹¤ê³  í•´ë„ ì´ì–´í° ì¹˜ê³ ëŠ” ë¹„ì‹¸ë‹¤.</p>

<p>A8ì— ì•„ì´í°ìš© ë§ˆì´í¬/ë¦¬ëª¨ì½˜ì„ ë‹¨ ì œí’ˆì´ë‹¤. ìž˜ ì•Œê³  ìžˆì„ <a href="http://stores.bang-olufsen.com/great-britain/bang-olufsen-of-derby/pre-owned/a8-earphones-black">A8</a> ì œí’ˆí•˜ê³  ê°™ì€ ì†Œë¦¬ê°€ ë‚œë‹¤ê³  ë‚˜ëŠ” í™•ì‹ í•˜ë‚˜, ëª‡ëª‡ ì„¸ë ¥ë“¤ì´ ì•„ë‹ˆë¼ëŠ” í‰ì´ ìžˆë‹¤. ì™¼ìª½ ê·€ì— A8, ì˜¤ë¥¸ìª½ ê·€ì— 3Ië¥¼ ë¼ê³  ê°™ì€ ì†ŒìŠ¤ë¡œ ë“¤ì–´ë³¸ ê²°ê³¼ ê°™ì€ ë“œë¼ì´ë²„ë¼ê³  ì ì–´ë„ ë‚˜ëŠ” ê²°ë¡ ì„ ë‚´ë ¸ë‹¤. íŒë‹¨ì€ ì•Œì•„ì„œ. ì–´ì°¨í”¼ A8ì€ ì§€ê¸ˆ ì‹ í’ˆ êµ¬í•˜ê¸° ì–´ë ¤ìš°ë‹ˆ íŠ¹ë³„ížˆ 4ê·¹ í”ŒëŸ¬ê·¸ë¥¼ ì‚¬ìš©í• ë•Œ ë§ì½ì„ ë¶€ë¦¬ëŠ” ê¸°ê¸°ë¥¼ ì“°ì§€ ì•ŠëŠ” ì´ìƒ ì´ê±¸ ì‚¬ëŠ”ê²Œ ë§žë‹¤.</p>

<p>ë‹¹ì—°í•œ ì´ì•¼ê¸°ì´ì§€ë§Œ, ì»¤ë„í˜•ë³´ë‹¤ëŠ” ì†Œë¦¬ê°€ ì‹œì›í•˜ë‹¤. ì†œì„ ì‚¬ìš©í•˜ì§€ ì•Šìœ¼ë©´ ì°©ìš©ê°ë„ ì• ë§¤í•˜ê³ , ê·¸ì— ë”°ë¼ì„œ ì†Œë¦¬ ê· í˜•ì´ ì¢€ ì•ˆì¢‹ë‹¤. ì†œì„ ì‚¬ìš©í•˜ë©´ í™•ì‹¤ížˆ ì €ìŒìª½ì— ì¢€ íŽ¸í–¥ëœë‹¤ëŠ” ëŠë‚Œì´ ìžˆìœ¼ë‚˜, ê·¸ëž˜ë„ ë‹¤ë¥¸ ì´ì–´í°ì— ì†œì„ ì‚¬ìš©í•˜ëŠ” ê²ƒ ë³´ë‹¤ëŠ” í›¨ì”¬ ê· í˜•ê°ì´ ìžˆë‹¤. ì°©ìš©ê°ë„ êµ‰ìž¥ížˆ ì¢‹ì€ë°, ì•ˆê²½ì„ ë¼ëŠ” ì‚¬ëžŒì€ ê·€ì— ê±°ëŠ”ê²Œ ë‘ê°œê°€ ë˜ì–´ì„œ ì• ë§¤í•  ìˆ˜ ìžˆë‹¤. (ì§ì ‘ í•´ë³¸ ê²°ê³¼, ì• ë§¤í•˜ë‹¤. ì•ˆê²½ ë¼ëŠ” ì‚¬ëžŒì´ë©´ ë³„ì  í•˜ë‚˜ ë¹¼ëŠ”ê²Œ ë§žë‹¤.) ì‚¬ì†Œí•œ ìž¥ì ì´ì§€ë§Œ, ì˜ˆì˜ë‹¤.</p>

<p>í•˜ìš°ì§• ëª¨ì–‘ íŠ¹ì„±ìƒ ì†œì„ ìž˜ëª» ë¼ë©´ ë‚˜ë„ ëª¨ë¥´ëŠ” ì‚¬ì´ì— ë¹ ì§€ê¸°ê°€ ì‰½ë‹¤. (ì¼€ì´ìŠ¤ì— ë„£ì—ˆë‹¤ê°€ ë¹¼ê±°ë‚˜ í• ë•Œ ë¹ ì§€ê³  ê·¸ëŸ° ì¼ì´ ë§Žë‹¤.) ì‹¸êµ¬ë ¤ ì†œì„ ì•„ì˜ˆ ì—¬ëŸ¬ ì„¸íŠ¸ ì‚¬ì„œ ë“¤ê³  ë‹¤ë‹ˆëŠ”ê±¸ ì¶”ì²œ. ì¼€ì´ìŠ¤ê°€ ì˜ˆì˜ë‚˜ ì‚¬ìš©ì´ ë¶ˆíŽ¸í•´ì„œ (ì¨ë³´ë©´ ì•Œ ìˆ˜ ìžˆë‹¤...) <a href="http://www.amazon.com/Brainwavz-Hard-Earphone-Case-Suitable/dp/B00HPPL1M4">Brainwavzì œ í•˜ë“œì¼€ì´ìŠ¤</a>ì— ë„£ì–´ ê°–ê³  ë‹¤ë‹Œë‹¤. ê³µêµë¡­ê²Œë„ 3IëŠ” ì¸¡ì •ì´ ì—†ìœ¼ë‚˜, ê°™ì€ ë“œë¼ì´ë²„ì¸ A8ì˜ ì¸¡ì • ê²°ê³¼ëŠ” <a href="http://ko.goldenears.net/board/index.php?mid=GR_Earphones&amp;search_target=title&amp;search_keyword=olufsen&amp;document_srl=3384700">ì—¬ê¸°</a>ì— ìžˆë‹¤.</p>

<h3 id="beyerdynamicdt1350">Beyerdynamic DT1350</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/main.jpg" alt="Beyerdynamic DT1350"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://tascam.jp/product/dt_1350/">http://tascam.jp/product/dt_1350/</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜†</li>
<li>ê°€ê²©: 40ë§Œì› ì „í›„.</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ìž„íŽ˜ë˜ìŠ¤ê°€ 80Î©ìœ¼ë¡œ ë†’ì€ íŽ¸ì´ë‚˜ ì˜ì™¸ë¡œ ì•°í”„ ì—†ì–´ë„ ë¬´ë‚œížˆ êµ¬ë™ ê°€ëŠ¥. ìžˆëŠ” íŽ¸ì´ ì¢‹ìœ¼ë‹ˆ ì‹¤ì œë¡œ íœ´ëŒ€í• ì§€ëŠ” ë³¸ì¸ íŒë‹¨. ì¼ë‹¨ì€ ê°€ëŠ¥.</li>
</ul>

<p>ì´ ê¸€ì— ìžˆëŠ” ìœ ì¼í•œ On-ear í—¤ë“œí°. (<strong>ìž‘ë‹¤</strong>ë¼ê³  í•´ì„í•˜ë©´ ëœë‹¤. ìœ ì‚¬í•œ í˜•íƒœë¡œëŠ” ì  í•˜ì´ì € PX100/PX200, Kossì˜ í¬íƒ€í”„ë¡œ ê°™ì€ ì œí’ˆì˜ í˜•íƒœë¥¼ ìƒê°í•˜ë©´ ëœë‹¤.) 1937ë…„ì— ìµœì´ˆì˜ ë‹¤ì´ë‚˜ë¯¹ í—¤ë“œí° DT48 (ì—¬ë‹´ì´ì§€ë§Œ ì´ ì œí’ˆì€ 2012ë…„ê¹Œì§€ ë¬´ë ¤ 75ë…„ ë™ì•ˆ ìƒì‚°í–ˆë‹¤) ì²˜ìŒìœ¼ë¡œ ë§Œë“  ì—­ì‚¬ì™€ ì „í†µì´ ìžˆëŠ” ë°”ì´ì–´ë‹¤ì´ë‚˜ë¯¹ì—ì„œ ìƒˆë¡œ ë‚´ë†“ì€ Tesla ë¼ì¸ ì¤‘ì—ì„œ ì €ê°€ ì œí’ˆ ì¤‘ í•˜ë‚˜ì´ë‹¤. (ìµœìƒìœ„ ì œí’ˆì¸ T1ì€ 100ë§Œì› ë„˜ì–´ê°„ë‹¤.)</p>

<p>ì €ìŒì— ì¹˜ìš°ì¹œ ì„±í–¥ì´ ìžˆëŠ” T50p/T51pì™€ ë‹¬ë¦¬, ë ˆí¼ëŸ°ìŠ¤ ì„±í–¥ì´ ê°•í•œ, ì–´ì°Œë³´ë©´ ì‹¬ì‹¬í•œ ì†Œë¦¬ë¼ê³  ìƒê°ë  ìˆ˜ ìžˆëŠ” ì œí’ˆì´ë‹¤. M50Xì€ ìž¬ë¯¸ê°€ ì¢€ ìžˆëŠ” ëŒ€ì‹  ì €ìŒ íŽ¸í–¥ì´ ì¢€ ì‹¬í•œë°, DT1350ì€ ì „í˜€ íŽ¸í–¥ë˜ì§€ ì•Šì€ ì†Œë¦¬ë¥¼ ì¦ê¸¸ ìˆ˜ ìžˆë‹¤. ìž¥ì‹œê°„ ì°©ìš©í•´ë„ ë¶ˆíŽ¸í•˜ì§€ ì•Šê³ , ì•„ë¬´ëž˜ë„ ì–¼êµ´ì„ ë®ëŠ” ë©´ì ì´ ì ì€ ë§Œí¼ ë•€ë„ ìƒëŒ€ì ìœ¼ë¡œ ëœ ì°¬ë‹¤. í—¨ë“œë°´ë“œë„ ê°€ë³ê³ , ì ‘ì´ê°€ ë˜ì§€ëŠ” ì•Šìœ¼ë‚˜ ê¸°ë³¸ ì‚¬ì´ì¦ˆê°€ ìž‘ê¸° ë•Œë¬¸ì— íœ´ëŒ€í•˜ê¸°ì— ë‹¤ë¥¸ í—¤ë“œí°ë³´ë‹¤ ìˆ˜ì›”í•˜ë‹¤. (ë¬¼ë¡ , í¬íƒ€í”„ë¡œì²˜ëŸ¼ ì†ë°”ë‹¥ì— ë“¤ì–´ê°ˆ ì‚¬ì´ì¦ˆë¡œ ì ‘ížˆì§€ëŠ” ì•ŠëŠ”ë‹¤.) ê°œì¸ì ìœ¼ë¡œëŠ” ê°ˆë¼ì§€ëŠ” í—¤ë“œë°´ë“œ ë””ìžì¸ì´ ì¢‹ì€ë°, ì´ê±´ í˜¸ë¶ˆí˜¸ê°€ ê°ˆë¦¬ëŠ”ê²ƒ ê°™ë‹¤. í¬ê¸°ê°€ ìž‘ê¸° ë•Œë¬¸ì— ì´ë™ìš©ìœ¼ë¡œ ì‚¬ìš©í•˜ê¸° ì¢‹ê³ , ì˜ˆì˜ì§€ ì•Šì€ ë””ìžì¸ì´ ëŒ€ë¶€ë¶„ì¸ ë°”ì´ì–´ë‹¤ì´ë‚˜ë¯¹ ë¼ì¸ì—…ì¹˜ê³ ëŠ” ë””ìžì¸ì´ ì˜ˆì˜ë‹¤. (í—¤ë“œí° ì• í˜¸ê°€ë“¤ì€ ëª»ëŠë¼ëŠ”ê²ƒ ì¤‘ í•˜ë‚˜ê°€, í’€ì‚¬ì´ì¦ˆ over-the-earë¥¼ ì°¨ê³  ê±°ë¦¬ë¥¼ ëŒì•„ë‹¤ë‹ˆëŠ”ê²Œ ì–´ìš¸ë¦¬ëŠ” ì‚¬ëžŒì€ ê±°ì˜ ì—†ë‹¤ëŠ”ê±°ë‹¤. ê²Œë‹¤ê°€ DT990 ê°™ì€ ë””ìžì¸ì€ ì•„ë¬´ë¦¬ ì˜ˆì˜ê³  ìž˜ìƒê¸´ ì—°ì• ì¸ì´ë¼ë„ ë‹¨ë°•ì— ë•ë°ì•„ì›ƒ ëœë‹¤.)</p>

<p>ì†ŒìŠ¤ëž‘ ì—°ê²°í•˜ëŠ” ì„ ì´ ì–´ì§¸ì„œì¸ì§€ ì™¼ìª½ì— ë‹¬ë¦°ê±´ í•œê°€ì§€ ë‹¨ì . ìƒë‹¹ìˆ˜ ì‚¬ëžŒë“¤ì´ ì˜¤ë¥¸ì† ìž¡ì´ì´ê³ , ì˜¤ë¥¸ìª½ ì£¼ë¨¸ë‹ˆì— ì†ŒìŠ¤ë¥¼ ë„£ê³  ë‹¤ë‹ˆëŠ”ê±¸ ê°ì•ˆí•˜ë©´ ì¢€ ì´í•´ê°€ ì•ˆë˜ë‚˜, ëŒ€ì¹­í˜•ì´ë‹ˆ ê·¸ëƒ¥ ê±°ê¾¸ë¡œ í•˜ë©´ ëœë‹¤. (inverse stereoë¡œ ë“£ëŠ”ë‹¤ê³  ì´ìƒí•´ì§€ëŠ” ìŒì•…ì€ ê±°ì˜ ì—†ë‹¤.) êµì²´ë„ ì•ˆë˜ëŠ”ë° ì„ ì´ ë§¤ìš° ê¸¸ê¸° ë•Œë¬¸ì— ì„ ì„ ë¬¶ê³  ë‹¤ë…€ì•¼í•˜ëŠ” ì ê³¼, ìž„í”¼ë˜ìŠ¤ê°€ 80ì˜´ìœ¼ë¡œ ë¹„êµì  ë†’ë‹¤ëŠ”ê²Œ íœ´ëŒ€í•˜ëŠ”ë° ë‹¤ë¥¸ ì´ìœ ë¡œëŠ” ì™„ë²½í•  ìˆ˜ë„ ìžˆì—ˆë˜ ì œí’ˆì„ ê¹Žì•„ë‚´ë¦¬ëŠ” ì ì´ ì•½ê°„ ì•„ì‰¬ì›Œì„œ ë³„ì  í•˜ë‚˜ ë¹ ì¡Œë‹¤.</p>

<h3 id="etymoticresearcher4pt">Etymotic Research ER4-PT</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/er4_450_v3.jpg" alt="Etymotic Research ER4-PT"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://www.etymotic.com/consumer/earphones/er4.html">http://www.etymotic.com/consumer/earphones/er4.html</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜…</li>
<li>ê°€ê²©: 40ë§Œì› ì „í›„.</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ê°€ëŠ¥.</li>
</ul>

<p>ì»¤ìŠ¤í…€ì˜ ì˜ì—­ìœ¼ë¡œ ë“¤ì–´ê°€ì§€ ì•ŠëŠ” IEMì¤‘ì—ì„œëŠ” ê°œì¸ì ìœ¼ë¡œ ë³¸ì¢Œê¸‰ ì œí’ˆ. ì‹±ê¸€ BAë¼ëŠ”ê±¸ ê°–ê³  ë§Žì´ ê¹Œì´ì§€ë§Œ, ê°œì¸ì ìœ¼ë¡œëŠ” ì‹±ê¸€ë¡œë„ ì´ ì •ë„ ì†Œë¦¬ë¥¼ ë‚´ë©´ êµ³ì´ ë©€í‹° BAë¡œ ê°ˆ í•„ìš”ê°€ ìžˆë‚˜ ë¼ëŠ” ìƒê°ì´ ë“ ë‹¤. ì—¬ê¸°ì„œ ì†Œê°œí•œ ì œí’ˆ ì¤‘ì—ì„œ ê°€ìž¥ ì² ì €í•œ QC ê³¼ì •ì„ ê±°ì¹˜ëŠ” ì œí’ˆìœ¼ë¡œ, êµ¬ë§¤ì‹œ ë°•ìŠ¤ ì•ˆì— ì±„ë„ ê· í˜•í•˜ê³  FR ì¸¡ì •í•œ ê²°ê³¼ë¥¼ ê°™ì´ ë„£ì–´ì£¼ê³ , í•´ë‹¹ ì„œë¥˜ì— ê²€ìˆ˜ë¥¼ í•œ ì‚¬ëžŒì˜ ì¸ì¦ ì„œëª…ì´ ë“¤ì–´ê°€ ìžˆë‹¤. í˜¹ì‹œë¼ë„ ì±„ë„ ê· í˜•ì´ ì•ˆë§žê±°ë‚˜ í•˜ë©´ ì—í‹°ëª¨í‹±ì‚¬ì— ë³´ë‚´ë©´ ìˆ˜ë¦¬/ë³´ì • í›„ ë‹¤ì‹œ ë°›ì„ ìˆ˜ ìžˆë‹¤.</p>

<p>ER4-PTì™€ ER4PëŠ” ê¸°ë³¸ì ìœ¼ë¡œ ì´ì–´í° ìžì²´ëŠ” ê°™ì€ ì œí’ˆì´ë‹¤. ì°¨ì´ëŠ” ìœ„ì— ê²€ìˆ˜ë¥¼ í•œ ì¸ì¦ì„œì™€ ER4S ë³€í™˜ ì¼€ì´ë¸”, ë³„ë¡œ ì“¸ ì¼ ì—†ëŠ” ë¹„í–‰ê¸°ìš© ì–´ëŒ‘í„°ê°€ ë“¤ì–´ìžˆë‹¤ëŠ” ì°¨ì´ ì •ë„ì´ë‹¤. ê·¸ ì¤‘ì—ì„œ ER4S ì¼€ì´ë¸” ì •ë„ëŠ” ì›ëž˜ ê°€ê²©ì´ ì¢€ ìžˆëŠ” ë¬¼ê±´ì´ë¼ (ë‚´ìš©ë¬¼ ìžì²´ëŠ”, ì‚¬ì‹¤ ê·¸ëƒ¥ ì €í•­ 2ê°œë‹¤.) ê½¤ í° í”ŒëŸ¬ìŠ¤ì´ë‹¤. ì•„ìš¸ëŸ¬ FR íŠ¹ì„± ìžì²´ë„ ER4Sê°€ ë” ì¢‹ê¸° ë•Œë¬¸ì—, ì•°í”„ ì‚¬ìš©ì‹œì—ëŠ” ë°˜ê°‘ê²Œ ì‚¬ìš©í•  ìˆ˜ ìžˆë‹¤. (ë‹¤ë¥¸ ìš©ë„ê°€ ë”±ížˆ ì—†ì–´ì„œ, ë‚˜ ê°™ì€ ê²½ìš°ëŠ” ë³€í™˜ ì¼€ì´ë¸”ì„ ê·¸ëƒ¥ ì•°í”„ì— ê¼½ì•„ë‘ì—ˆë‹¤.) ê±°ì¹˜ìš© ER4Sì™€ íœ´ëŒ€ìš© ER4Pë¥¼ í•œë²ˆì— ì‚¬ëŠ” ê²©ì´ë‹ˆ ì´ê±´ í™•ì‹¤ížˆ ì´ë“ì´ë‹¤. ER4Bë„ ì§ì ‘ íšŒë¡œë¥¼ ì§œë©´ ì‹œë®¬ë ˆì´ì…˜ì€ ê°€ëŠ¥í•˜ë‚˜, Binaural ì˜¤ë””ì˜¤ ì´ì™¸ì—ëŠ” ìš©ë„ê°€ ë‹¤ì†Œ ì• ë§¤í•˜ë‹ˆ êµ³ì´ ì‹ ê²½ì„ ì•ˆì¨ë„ ë˜ê² ë‹¤.</p>

<p>ì¶”ê°€ì ìœ¼ë¡œ, Etymoticì˜ ê³ ê° ì§€ì›ì€ ë§¤ìš° ì¢‹ê¸° ë•Œë¬¸ì— ê¸°ë³¸ì ìœ¼ë¡œ ë¨¹ê³  ë“¤ì–´ê°€ëŠ” ì ìˆ˜ê°€ ìžˆë‹¤. (ìŒí–¥ìª½ì—ì„œëŠ” ìµœê°•ì˜ ê³ ê° ì§€ì›ì„ ìžëž‘í•˜ëŠ” Koss ë‹¤ìŒ ì •ë„ë¼ê³  ê°œì¸ì ìœ¼ë¡œ ìƒê°í•œë‹¤. ë‹¤ë§Œ, KossëŠ” ë³´ì¦ ê¸°í•œì´ ë¬´ì œí•œì´ë¼ëŠ” ë¬´ì‹œ ëª»í•  ê°•ì ì´ ìžˆë‹¤.) ê³ ê° ì§€ì›ì„ ì™¸ì£¼ ì„¼í„°ì— ì£¼ì§€ ì•Šê³  ì „ëŸ‰ ë³¸ì‚¬ì—ì„œ ì§ì ‘ ìš´ì˜í•˜ê¸° ë•Œë¬¸ì— ë¬¸ì œì ì´ ìžˆì–´ì„œ ì§ˆì˜ë¥¼ í•˜ë©´ ë‡Œê°€ ë‹¬ë¦° ì‚¬ëžŒì´ ëŒ€ë‹µì„ í•´ì¤€ë‹¤ëŠ” ìž¥ì ì´ ìžˆë‹¤. ì•„ìš¸ëŸ¬ ë³´ì¦ ê¸°ê°„ ë‚´ì— ìžˆëŠ” ì œí’ˆì´ ë¬¸ì œê°€ ìƒê²¼ì„ ê²½ìš°ì—ëŠ” ìžì„¸í•œ ë‚´ìš© ë¬»ì§€ ì•Šê³  ì „ì²´ ë¬´ìƒ êµí™˜ì´ ë“¤ì–´ê°„ë‹¤. (ê²½í—˜ìƒ ì‚´ì§ ë„˜ì–´ê°„ ê²ƒë„ ë°›ì•˜ë‹¤. ë„ˆë¬´ ë‚¨ìš©í•˜ì§€ëŠ” ë§ìž.)</p>

<p>ë‹¨ì . 3-flange ì´ì–´íŒì— ëŒ€í•´ì„œ í˜¸ë¶ˆí˜¸ê°€ êµ‰ìž¥ížˆ ê°ˆë¦°ë‹¤. í˜¹ìžë“¤ì€ ì‚°ë‚™ì§€ë¥¼ ê³ ë§‰ì— ë¶™ì—¬ë†“ì€ ë“¯í•œ ê³ í†µì„ í˜¸ì†Œí•˜ê³ , í˜¹ìžë“¤ì€ í›Œë¥­í•œ ì°¨ìŒì„±ì„ ì°¬ì–‘í•œë‹¤. êµì²´ë¥¼ ìžì£¼ í•´ì¤˜ì•¼í•˜ëŠ”ê²Œ ì¡°ê¸ˆ ë¬¸ì œì´ì§€ë§Œ, ì „ìžì— í•´ë‹¹í•˜ëŠ” ì‚¬ëžŒì´ë¼ë©´ ì—°íƒ„ ì´ì–´íŒì„ ì‚¬ìš©í•˜ë©´ ëœë‹¤. (ë²ˆë“¤ëœ ë‹¤ë¥¸ í¼íŒì€ ì†Œë¦¬ íŠ¹ì„±ì´ ë§Žì´ ë°”ë€Œê¸° ë•Œë¬¸ì— ì¶”ì²œí•˜ì§€ ì•ŠëŠ”ë‹¤.) ë§ˆì§€ë§‰ìœ¼ë¡œ, ë ˆí¼ëŸ°ìŠ¤ ì„±í–¥ì´ ê°•í•œ ì œí’ˆì¸ ë§Œí¼ ì†Œë¦¬ê°€ ê· í˜• ìžˆì§€ë§Œ ë§¤ìš° ì‹¬ì‹¬í•˜ê³ , íŠ¹ížˆ ë² ì´ìŠ¤ê°€ ì¤‘í›„í•œ ì†Œë¦¬ë¥¼ ì¢‹ì•„í•˜ëŠ” ì‚¬ëžŒí•œí…ŒëŠ” ì¢€ ì•„ì‰¬ìš¸ ìˆ˜ ìžˆë‹¤. ì‹±ê¸€ BAë¼ê³  ë§Žì´ ê¹Œì´ëŠ”ë°, ì´ ë¶€ë¶„ì— ëŒ€í•´ì„œëŠ” ë³¸ì¸ì´ íŒë‹¬ í•  ëª«. ë§ˆì§€ë§‰ìœ¼ë¡œ ì‚¬ì†Œí•œ ë¶ˆí‰ì´ì§€ë§Œ ì´ì–´í° ì£¼ì œì— ì„ ì´ ì¢€ ê¸¸ë‹¤.</p>

<h3 id="phonakpfe232">Phonak PFE232</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/71IbgfLbMZL-_SL1500_.jpg" alt="Phonak PFE232"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://www.amazon.com/Audeo-PFE-232-Perfect-Earphones/dp/B006GAERYS">http://www.amazon.com/Audeo-PFE-232-Perfect-Earphones/dp/B006GAERYS</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜†</li>
<li>ê°€ê²©: ë‹¨ì¢… ì œí’ˆ. 50ë§Œì› ì „í›„. (ì •ê°€ëŠ” 70ë§Œì›ëŒ€. í¬ë‚™ì´ ì ‘ìœ¼ë©´ì„œ ê°€ê²© ë‚´ë ¤ê°.)</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ê°€ëŠ¥. ë‹¨, ì´ì–´í° ì¹˜ê³ ëŠ” ìž„íŽ˜ë˜ìŠ¤ê°€ ë†’ë‹¤.</li>
</ul>

<p>ë³¸ì—…ì€ ë³´ì²­ê¸°íšŒì‚¬ì—ì„œ ìž ì‹œ ë¯¸ì³ì„œ ë‚´ê³  ì ‘ì—ˆë˜ Audeoë¼ëŠ” ì´ì–´í° ë¸Œëžœë“œì˜ ìµœìƒìœ„ ì œí’ˆêµ°. ë‹¨ì¢…ì´ ë˜ê¸° ì „ì— ì‚¬ìš´ë“œìº£ì—ì„œ 69.9ë§Œì›ì´ë¼ëŠ” ì‚´ì¸ì ì¸ ê°€ê²©ì— íŒë§¤ë¥¼ í•œ ì œí’ˆì¸ ë§Œí¼ ìž˜ íŒ”ë¦¬ì§€ëŠ” ì•Šì€ ê²ƒìœ¼ë¡œ ì•Œê³  ìžˆë‹¤. ì´ëŸ° ê°€ê²©ì„ ìžëž‘í•˜ì§€ë§Œ, ë“€ì–¼ BAë¼ëŠ” ì–´ì°Œë³´ë©´ ì¡°ê¸ˆì€ ì•„ì‰¬ìš´ ìŠ¤íŽ™ì„ ê°–ê³  ìžˆëŠ”ë°, Sonionì œ BAë¥¼ ì‚¬ìš©í•˜ëŠ” ë‹¤ë¥¸ PFEì œí’ˆêµ°ê³¼ëŠ” ë‹¬ë¦¬ Knowlesì œë¡œ ì €ìŒ ëŒ€ì—­ì„ ìœ„í•´ì„œ EF-31264-000ë¥¼, ê³ ìŒ ëŒ€ì—­ì€ ED-23619ë¥¼ í¬ë¡œìŠ¤ì˜¤ë²„í•´ì„œ ì‚¬ìš©í•˜ê³  ìžˆë‹¤. í• ì¸ ê°€ê²©ì„ ê°ì•ˆí•´ë„ ë¹„ì‹¸ê¸° ë•Œë¬¸ì— ë³„ì  í•˜ë‚˜ ë¹ ì§„ë‹¤.</p>

<p>PFE0xxë‚˜ PFE1xxì˜ ìƒìœ„ ê¸°ì¢…ì¸ ë§Œí¼ ì†Œë¦¬ì˜ íŠ¹ìƒ‰ì´ ë¹„ìŠ·í• êº¼ë¼ ê¸°ëŒ€í•˜ë©´ ì˜¤ì‚°ì´ë‹¤. ê°œì¸ì ì¸ ì†Œê²¬ìœ¼ë¡œëŠ” êµ‰ìž¥ížˆ ë‹¤ë¥¸ ì„±í–¥ì˜ ì†Œë¦¬ë¥¼ ë‚´ì£¼ëŠ” ì œí’ˆìœ¼ë¡œ, BA ì œì¡°ì‚¬ë‚˜ êµ¬ì„±ì„ ê°ì•ˆí•˜ë©´ ì¶©ë¶„ížˆ ìžˆì„ ìˆ˜ ìžˆëŠ” ì¼ì´ë‹¤. ì†Œë¦¬ëŠ” êµ³ì´ ì´ì•¼ê¸°í•˜ìžë©´ ê· í˜•ì´ ìžˆëŠ” ë ˆí¼ëŸ°ìŠ¤ê³„ ë³´ë‹¤ëŠ” ë‹¤ì´ë‚˜ë¯¹í•œ ëŠë‚Œìœ¼ë¡œ, ì €ìŒê³¼ ê³ ìŒì´ ê°•í•˜ë‹¤. íŠ¹ížˆë‚˜ ê³ ìŒì˜ ì‹œì›í•¨ì€ BAë¥¼ ì‚¬ìš©í•˜ëŠ” ì´ì–´í° ì¹˜ê³ ëŠ” ì¢€ ë“œë¬¸ ìˆ˜ì¤€ì´ë¼ ì¢‹ë‹¤ê³  ìƒê°í•˜ë‚˜, ì €ìŒ ë•Œë¬¸ì— ì¤‘ìŒì´ ì¢€ ë¬»ížŒë‹¤ëŠ” ì¸ìƒì€ ìžˆë‹¤.</p>

<p>ì›ëž˜ í•˜ë¼ëŠ”ëŒ€ë¡œ ì‚¬ì´ë“œë¥¼ ì‚¬ìš©í•˜ê³  over-ear í˜•íƒœë¡œ ì°©ìš©í•  ê²½ìš° ì°©ìš©ê°ì´ ì¢‹ë‹¤. (ê°œì¸ì ìœ¼ë¡œëŠ” PFE132ì— í¬í•¨ëœ íˆ¬ëª… ì´ì–´ê°€ì´ë“œê°€ PFE232ì— í¬í•¨ëœ ê²€ì •ìƒ‰ ë³´ë‹¤ íŽ¸í•˜ë‹¤ê³  ìƒê°í•˜ì§€ë§Œ, ì´ê±´ ê°œì¸ì ì¸ ì·¨í–¥ ë¬¸ì œì¸ ë“¯.) ë‹¤ë§Œ, over-earê°€ ë‹¤ ê·¸ë ‡ì§€ë§Œ ì•ˆê²½ê³¼ ë™ì‹œì— ì‚¬ìš©í•˜ë©´ ì¡°ê¸ˆ ë¶ˆíŽ¸í•˜ë‹¤. ì´ë•Œì—ëŠ” ì•„ì‰¬ìš´ëŒ€ë¡œ ì¢Œìš°ë¥¼ ë°”ê¿”ì„œ ê·¸ëƒ¥ in-earë¡œ ì°©ìš©í•  ìˆ˜ ìžˆë‹¤. (ê½¤ë‚˜ ë‹¹ì—°í•˜ê²Œ ëŠê»´ì§„ ë°©ë²•ì¸ë°, ê³¨ë“ ì´ì–´ìŠ¤ë‚˜ í—¤ë“œíŒŒì´ ê°™ì€ ì»¤ë®¤ë‹ˆí‹°ì— ì´ ë°©ë²•ì„ ì“°ëŠ” ì‚¬ëžŒì´ ì—†ë‹¤ëŠ”ê²Œ ì¢€ ì‹ ê¸°í•˜ë‹¤ê³  ìƒê°í–ˆë‹¤.)</p>

<p>êµ¬ì„±í’ˆì´ ì¢‹ì€ íŽ¸ì´ë‚˜, PFE 1xx ì œí’ˆêµ° ëŒ€ë¶€ë¶„ë„ ì´ ì •ë„ ë˜ê¸° ë•Œë¬¸ì— ì—­ì‹œë‚˜ ê°€ê²©ì„ ì •ë‹¹í™” í•  ìˆ˜ ìžˆëŠ” ìˆ˜ì¤€ì€ ì•„ë‹ˆë‹¤. ìµœìƒìœ„ ê¸°ì¢…ì¸ ë§Œí¼ í¬ë‚™ì˜ í•„í„° 3ì¸ë°© ëª¨ë‘ê°€ 2ìŒì”© í¬í•¨ë˜ì–´ìžˆê³ , ê³µêµë¡­ê²Œë„ 2015ë…„ 10ì›” í˜„ìž¬ í’ˆê·€ í˜„ìƒì¸ íšŒìƒ‰ í•„í„° ì‹ í’ˆì„ ìž…ìˆ˜í•  ìˆ˜ ìžˆëŠ” ìœ ì¼í•œ ë°©ë²•ì´ê¸°ë„ í•˜ë‹¤. (ë‹¤ë§Œ, ê·¸ê±¸ ìœ„í•´ì„œ ê°ìˆ˜í•´ì•¼í•˜ëŠ” í¬ìƒì€... í¬ë‹¤. í˜„ìž¬ ì§€êµ¬ìƒì— ë‚¨ì•„ìžˆëŠ” íŒë§¤ì²˜ëŠ” <a href="http://www.earphonesolutions.com/audeo-pfe-232.html">Earphone Solutions</a> í•œ ê³³. ê·¸ë‚˜ë§ˆë„ ìž¬ê³ ê°€ ì—†ì–´ì§ˆë•Œê¹Œì§€ë§Œ íŒë‹¤ê³  í•œë‹¤.) ê°€ìž¥ í° ì°¨ì´ëŠ” ì¼€ì´ë¸”ì´ êµì²´ê°€ ê°€ëŠ¥í•˜ê³  ëŠì–´ì§€ê±°ë‚˜ í•˜ë©´ <a href="http://www.earphonesolutions.com/replacement-cable-pfe232-audeo.html">êµì²´í’ˆì„ êµ¬ìž…í•  ìˆ˜ ìžˆë‹¤</a>ëŠ”ê±´ë°, ì´ê²ƒ ì—­ì‹œ ìž¬ê³  ì†Œì§„ì´ ë˜ë©´ ë¬¸ì œê°€ ë  ì—¬ì§€ê°€ ìžˆë‹¤. ì „ Audeo ì œí’ˆêµ°ê³¼ ê°™ì€ ë¬¸ì œì´ì§€ë§Œ, ì¼€ì´ìŠ¤ëŠ” í™•ì‹¤ížˆ ì• ë§¤í•˜ë‹¤. ì‚¬ì´ì¦ˆê°€ ìž‘ì€ ë§Œí¼ ìœ ë‹›ë¼ë¦¬ ì•ˆì—ì„œ ë¶€ë”§ì¹˜ë©´ì„œ ìƒì²˜ê°€ ë‚˜ëŠ” ë¬¸ì œëŠ” ë‘˜ì§¸ì¹˜ê³ , Audeo ì œí’ˆêµ°ì´ ì „ì²´ì ìœ¼ë¡œ ì„ ì´ í˜•ìƒ ê¸°ì–µì´ ìž˜ ë˜ëŠ” ë§Œí¼ ì œê³µëœ ì¼€ì´ìŠ¤ë¥¼ ì‚¬ìš©í•˜ë©´ êº¼ë‚´ì„œ ì‚¬ìš©í• ë•Œ ì„ ì´ ê¼¬ì—¬ì„œ ë°˜í•­ì„ í•˜ëŠ” ì¼ì´ ìžì£¼ ìƒê¸´ë‹¤. ì •ì‹  ê±´ìƒì„ ìœ„í•´ì„œ ë‹¤ì´ì†Œ ê°™ì€ë°ì„œ ì£¼ë¨¸ë‹ˆ ê°™ì€ê±¸ ì‚¬ì„œ íœ´ëŒ€í•˜ê±°ë‚˜, Shure EASCASEë‚˜ EAHCASE ì¼€ì´ìŠ¤ë¥¼ ì‚¬ìš©í•  ê²ƒì„ ê°•ë ¥í•˜ê²Œ ê¶Œìž¥í•œë‹¤. ë‹¤ì†Œ í˜¹í‰ì„ ë°›ì€ ì¸¡ì • ê²°ê³¼ëŠ” <a href="http://ko.goldenears.net/board/2559818">ì—¬ê¸°</a>ì—.</p>

<h3 id="sennheiserhd650">Sennheiser HD650</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/square_louped_hd_650_01_sq_high_end_sennheiser.png" alt="Sennheiser HD650"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://en-us.sennheiser.com/high-quality-headphones-around-ear-audio-surround-hd-650">http://en-us.sennheiser.com/high-quality-headphones-around-ear-audio-surround-hd-650</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜…â˜…</li>
<li>ê°€ê²©: 50ë§Œì› ì „í›„. (í•œêµ­ì—ì„œëŠ” ì¢€ ë” ì‹¸ê²Œ ì‚´ ìˆ˜ë„ ìžˆëŠ”ê²ƒ ê°™ë‹¤.)</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ë¶ˆê°€ëŠ¥.</li>
</ul>

<p>ì§‘ì—ì„œ ì‚¬ìš©í•  ê±°ì¹˜ìš© í—¤ë“œí°ì„ í•˜ë‚˜ë§Œ ì‚¬ì„œ ë™í•´ë¬¼ê³¼ ë°±ë‘ì‚°ì´ ë§ˆë¥´ê³  ë‹³ë„ë¡ ì“°ê³  ì‹¶ë‹¤ë©´ ë‹¤ë¥¸ ë¦¬ë·° ë³´ì§€ ë§ê³  ê·¸ëƒ¥ ì´ê±¸ ì‚¬ë©´ ëœë‹¤. ì—­ì‚¬ì™€ ì „í†µì´ ìžˆëŠ” íšŒì‚¬ì—ì„œ ë§Œë“  ë ˆí¼ëŸ°ìŠ¤ê¸‰ì¸ ë§Œí¼ ì†Œë¦¬ëŠ” í ìž¡ì„ ê³³ì´ ì—†ë‹¤. ì°©ìš©ê°ë„ ë§¤ìš° ì¢‹ê³ , ì˜¤í”ˆí˜•ì´ë‹¤ ë³´ë‹ˆ ë°€íí˜• ì²˜ëŸ¼ ë”ìš´ ë¬¸ì œëŠ” í™•ì‹¤ížˆ ì—†ë‹¤. ì™„ì„±ë„ê°€ ë§¤ìš° ë†’ì€ ê¸°ì¢…ì´ê³ , ë‘ê³ ë‘ê³  ì“¸ ìˆ˜ ìžˆëŠ” íŠ¼íŠ¼í•œ ì†Œìž¬ì¸ ë§Œí¼ ì´ì–´íŒ¨ë“œí•˜ê³  (Part Number: H-50635) í—¤ë“œë°´ë“œ íŒ¨ë“œë§Œ (Part Number: 088597) ë‹³ì•˜ì„ë•Œ êµì²´í•´ì£¼ë©´ ëœë‹¤. ì´ì–´íŒ¨ë“œëŠ” ìž˜í•˜ë©´ ATH íŒ¨ë“œ ì¤‘ ëª‡ ê¸°ì¢…í•˜ê³  í˜¸í™˜ì´ ë  ìˆ˜ë„ ìžˆëŠ” ì‚¬ì´ì¦ˆì´ë‹ˆ ê·€ì°®ìœ¼ë©´ ê·¸ê±¸ë¡œ, í—¤ë“œë°´ë“œ íŒ¨ë“œëŠ” ì • ê·€ì°®ìœ¼ë©´ <a href="http://item2.gmarket.co.kr/item/detailview/Item.aspx?goodscode=121907551&amp;pos_class_cd=111111111&amp;pos_class_kind=T&amp;pos_shop_cd=SH&amp;keyword_order=%B9%AE%C7%B3%C1%F6&amp;keyword_seqno=8245427770&amp;search_keyword=%B9%AE%C7%B3%C1%F6">ë¬¸í’ì§€</a>ë¡œ(...) ì €ë ´í•˜ê²Œ êµì²´ê°€ ê°€ëŠ¥í•˜ë‹¤. (ì–´ì°¨í”¼ ì§‘ì— ë†“ê³  ì“¸ê±°ë‹ˆ ëª¨ì–‘ì´ ì‹ ê²½ ì“°ì´ì§€ ì•ŠëŠ”ë‹¤ë©´ ë§ì´ë‹¤.) ìƒì‚°ì€ ì•„ì¼ëžœë“œì—ì„œ í•œë‹¤.</p>

<p>ì†Œë¦¬ëŠ” ì„±í–¥ì€ ë ˆí¼ëŸ°ìŠ¤ê³„ì´ê¸´ í•˜ì§€ë§Œ, ë”°ëœ»í•˜ë©´ì„œë„ ì‹œì›í•œ ëŠë‚Œì˜ (í›„ìžëŠ” ì˜¤í”ˆí˜•ì˜ íŠ¹ì„±ì´ë‹¤.) ì†Œë¦¬ë¥¼ ê²½í—˜í•  ìˆ˜ ìžˆë‹¤. ì˜¤í”ˆí˜•ì˜ íŠ¹ì„±ì„ ìž˜ ì‚´ë ¸ê³ , ìµœìƒê¸‰ ë“œë¼ì´ë²„ê°€ ë“¤ì–´ê°€ ìžˆëŠ” ì œí’ˆì´ë‹ˆ ì‹¤ë§í•  ì¼ì€ ì ˆëŒ€ ì—†ì„ê²ƒì´ë‹¤. ì•„ìš¸ëŸ¬ ê½¤ ê°€ë³ë‹¤. 300ì˜´ì´ë¼ëŠ” ê½¤ë‚˜ ë†’ì€ ìž„í”¼ë˜ìŠ¤ë¥¼ ìžëž‘í•˜ë¯€ë¡œ, ì•°í”„ ì‚¬ìš©ì„ ê°•ë ¥í•˜ê²Œ ê¶Œìž¥í•œë‹¤. í…ŒìŠ¤íŠ¸ ê²°ê³¼ íŽ˜ì–´ë§ì´ ê°€ìž¥ ì¢‹ì•˜ë˜ ê¸°ê¸°ëŠ” <a href="http://benchmarkmedia.com/collections/products/products/benchmark-dac2-hgc-digital-to-analog-audio-converter?variant=6966146945">Benchmark Media DAC2 HGC</a>ì˜€ìœ¼ë‚˜, ì •ì‹ ì´ ë˜‘ë°”ë¡œ ë°•ížŒ ì‚¬ëžŒì´ë¼ë©´ <a href="https://store.akafugu.jp/index.php?main_page=product_info&amp;cPath=6&amp;products_id=51&amp;zenid=e22b1077a3c5fd5ca860a640465e6a7d">ì ë‹¹ížˆ ì €ë ´í•œ í—¤ë“œí° ì•°í”„</a>ëž‘ ë¶™ì—¬ì„œ ì‚¬ìš©í•˜ë©´ ëœë‹¤. êµ³ì´ ê·¸ê²ƒë„ ê·€ì°®ë‹¤ë©´, ê·¸ëƒ¥ ê°–ê³  ìžˆëŠ” ì†ŒìŠ¤ì— ê¼½ì•„ë„ ë˜ëŠ”ë° ë³¸ì—°ì˜ ì„±ëŠ¥ì€ ëª»ë‚¼ ê°€ëŠ¥ì„±ì´ ìžˆë‹¤ëŠ” ì ì— ì£¼ì˜. ë²¤ì¹˜ë§ˆí¬ì‚¬ì—ì„œ í—¤ë“œí° ì•°í”„ íšŒë¡œ í…ŒìŠ¤íŠ¸ë¥¼ í• ë•Œ ì‚¬ìš©í•˜ëŠ” ë ˆí¼ëŸ°ìŠ¤ê°€ HD650ì¸ ë‚˜í¼ ì•žì„œ ì–¸ê¸‰í•œ DAC2 HGCì™€ì˜ íŽ˜ì–´ë§ì€ ë§¤ìš° í›Œë¥­í•˜ë‚˜, ì´ìƒí•˜ê²Œë„ ì‚¬ê³ ë‚˜ë©´ ê·¸ ë‹¬ ì›”ê¸‰ì„ ì•ˆë°›ì€ ê²ƒ ê°™ì€ ê¸°ë¶„ì„ ëŠë‚„ ìˆ˜ ìžˆë‹¤.</p>

<p>ë™ë´‰ëœ ì¼€ì´ë¸”ì´ ì¡´ë‚˜ê²Œ ê¸¸ë‹¤. 3ë¯¸í„°ë‹ˆê¹Œ ì–´ì§€ê°„í•œ ë°©ì—ì„œëŠ” ì±…ìƒìœ„ì— ìžˆëŠ” ì•°í”„ì— í—¤ë“œí°ì„ ê¼½ì•„ë‘ê³  ë² ëž€ë‹¤ì— ë‹´ë°°ë¥¼ í”¼ëŸ¬ ê°ˆ ìˆ˜ ìžˆëŠ” ê±°ë¦¬ë‹¤. ë¬¸ì œëŠ” ì´ê±¸ ì±…ìƒì—ì„œ ì‚¬ìš©í•˜ê²Œ ë  ê²½ìš° ì„ ì´ ê±¸ë¦¬ì  ê±°ë¦¬ê³ , ì˜ìžì— ê±¸ë¦¬ëŠ” ë“± í”¼ê³¤í•œ ì¼ì´ ìƒê¸´ë‹¤. ê³ ë¡œ 50ë§Œì›ì´ë¼ëŠ” ê±°ê¸ˆì„ ë“¤ì—¬ì„œ ì‚¬ê³ , ëˆì„ ë” ë“¤ì—¬ì„œ êµì²´ìš© ì„ ì„ ì‚¬ê±°ë‚˜, í‰í•˜ê²Œ ë¹µë´‰ì§€ ë¬¶ëŠ” ì² ì‚¬ë¡œ ëŒ€ì¶© ë¬¶ì–´ì„œë¼ë„ ì¼€ì´ë¸” ëŒë¦¼ì„ ë°©ì§€í•´ì£¼ëŠ”ê²Œ ì¢‹ë‹¤. (ì„ ì€ êµì²´ê°€ ê°€ëŠ¥í•œ ë””ìžì¸ìœ¼ë¡œ, ë½‘ìœ¼ë©´ ë¹ ì§„ë‹¤.) ê°œì¸ì ìœ¼ë¡œëŠ” Oyaideì œ HPC-35HDXë¼ëŠ” ì¼€ì´ë¸”ì„ ì‚¬ìš©í•˜ê³  ìžˆë‹¤. HPC-22W ì´ë¼ëŠ” PCOCC-Aë¼ëŠ” ìˆœë„ê°€ ë†’ê³  ìž¡ìŒ ë“±ì„ í™•ì‹¤í•˜ê²Œ ìž¡ì•„ì£¼ëŠ” ìµœê³ ê¸‰ ì†Œìž¬ì˜ 0.08mm êµµê¸°ì˜ ì„ ì„ 20ê°€ë‹¥ì”© 3ê°œì¡°ë¥¼ ê¼¬ì•„ì„œ ëŒ€ì¹­í˜•ìœ¼ë¡œ ë§Œë“¤ì–´ ë‚´ë¶€ ì„ ê³¼ ê³µê°„ì˜ ê· í˜•, ê·¸ë¦¬ê³  ì„ ì˜ ë³€í˜• ë° ì†ìƒì„ ë°©ì§€í•˜ëŠ” ìƒˆë¡œìš´ ë””ìžì¸ì— ë‚¨ì€ ê³µê°„ì„ ì„¬ìœ ë¡œ ì±„ì›Œ ì „ë„ì„±ì„ ê·¹ëŒ€í™” í•˜ë©´ì„œ ë‚´êµ¬ì„±ì„ ì˜¬ë¦° ê³ ê¸‰ ì¼€ì´ë¸”ì´ë‹¤. ë¬¼ë¡ , <strong>ì´ê±´ ì œì¡°ì‚¬ì—ì„œ í•˜ëŠ” ë§ˆì¼€íŒ…ìš© ê°œì†Œë¦¬</strong>ì´ê³ , <strong>ê²°êµ­ì€ ê·¸ëƒ¥ ì„ </strong>ì´ë‹¤. ì•„ë§ˆì¡´ í”„ë¼ìž„ ì£¼ë¬¸ì´ ê°€ëŠ¥í•œ ê°€ìž¥ ì‹¼ 3.5íŒŒì´ ì»¤ë„¥í„°ê°€ ê¸°ë³¸ì¸ ì§§ì€ ì„ ì´ë¼ëŠ” ì´ìœ ì—ì„œ ìƒ€ì„ ë¿, ìŒì§ˆì´ ë” ì¢‹ì•„ì§€ê±°ë‚˜ í•˜ì§€ëŠ” ì•ŠëŠ”ë‹¤. ì‹¸ë‹¤ê³  í•´ë„, 6ë§Œì› ì •ë„ í•˜ë‹ˆ, ì‹œê°„ì˜ ì—¬ìœ ê°€ ìžˆë‹¤ë©´ ì•Œë¦¬ë‚˜ ì´ë² ì´ì—ì„œ ì¢€ ë” ì €ë ´í•œ ì„ ì„ ì‚¬ëŠ”ê±¸ ì¶”ì²œí•œë‹¤. ë¬»ì§€ë§ˆ ë¸Œëžœë“œ ëŒ€ë¥™ì œëŠ” ì»¤ë„¥í„° ì²´ê²°ì‹œ ë•œì§ˆ í€„ë¦¬í‹° ë“±ì— ëŒ€í•´ì„œëŠ” ìš°ë ¤ë˜ëŠ” ë°”ê°€ ìžˆìœ¼ë‹ˆ, ì‹¸ë‹¤ê³  ë¬´í„±ëŒ€ê³  ì‚¬ëŠ” ê²ƒ ë³´ë‹¤ëŠ” ì¸ì§€ë„ê°€ ì–´ëŠ ì •ë„ ìžˆëŠ” ë²¤ë”ë¥¼ ê³¨ë¼ì„œ ê·¸ ì¤‘ì—ì„œ ì‹¼ê±° ì‚¬ë©´ ëœë‹¤. ë¸”ë¼ì¸ë“œ í…ŒìŠ¤íŠ¸ë¡œ ëŒê³ ëž˜ ì•„ë‹ˆë©´ ì–´ì°¨í”¼ êµ¬ë¶„ ëª»í•œë‹¤.</p>

<p>ì˜¤í”ˆí˜•ì¸ ë§Œí¼ ì‚¬ë¬´ì‹¤ì—ì„œ ì‚¬ìš©í•˜ë©´ ëª¨ë‘ê°€ í—¤ë“œí°ì„ ì‚¬ìš©í•˜ëŠ” ê±´ì „í•œ ì—…ë¬´ í™˜ê²½ì´ ì•„ë‹ ê²½ìš° ë™ë£Œë“¤ì—ê²Œ ë’¤í†µìˆ˜ë¥¼ ì³ë§žì„ ê°ì˜¤ë¥¼ í•´ì•¼í•œë‹¤. ì†Œë¦¬ê°€ ìƒˆëŠ”ê±´ ë§‰ì„ ìˆ˜ ì—†ê³ , ë§‰ì•„ì„œë„ ì•ˆë˜ëŠ” ë””ìžì¸ì´ë‹¤. ê³ ë¡œ ë°–ì—ì„œë„ ì‚¬ìš© ëª»í•œë‹¤. (ì•„ìš¸ëŸ¬ ë°–ì˜ ì†Œë¦¬ê°€ ë“¤ë¦°ë‹¤.) ë‚´ê°€ íšŒì‚¬ ì‚¬ìž¥ì´ ì•„ë‹ˆë©´ ì´ê±´ ê°€ì •ì´ë‚˜ ìŠ¤íŠœë””ì˜¤ì—ì„œ ì‚¬ìš©í•˜ëŠ” ìˆ˜ ë°–ì— ì—†ë‹¤. ë‹¤ë§Œ, ê·¸ëŸ°ê²Œ ë¬¸ì œê°€ ì—†ëŠ” ìƒí™©ì´ë¼ë©´ <strong>ì •ë‹µì€ ì´ê²ƒ</strong>ì´ë¼ê³  í• ë§Œí•œ í—¤ë“œí°. ì¸¡ì • ê²°ê³¼ëŠ” <a href="http://en.goldenears.net/11616">ì—¬ê¸°</a>ì—.</p>

<h3 id="sonymdre888">Sony MDR-E888</h3>

<p><img src="https://stdio.sangwhan.com/content/images/2015/11/31TF3JBAPML.jpg" alt="Sony MDR-E888"></p>

<p>ì´ë¯¸ì§€ ì¶œì²˜: <a href="http://www.amazon.co.jp/ã‚½ãƒ‹ãƒ¼-MDR-E888LP-SONY-ã‚¹ãƒ†ãƒ¬ã‚ªãƒ»ã‚¤ãƒ¤ãƒ¼ãƒ¬ã‚·ãƒ¼ãƒãƒ¼/dp/B00008S22K">http://www.amazon.co.jp/ã‚½ãƒ‹ãƒ¼-MDR-E888LP-SONY-ã‚¹ãƒ†ãƒ¬ã‚ªãƒ»ã‚¤ãƒ¤ãƒ¼ãƒ¬ã‚·ãƒ¼ãƒãƒ¼/dp/B00008S22K</a></p>

<ul>
<li>ë³„ì : â˜…â˜…â˜…â˜†â˜†</li>
<li>ê°€ê²©: ì¤‘ê³ ëŠ” 3ë§Œì›ë¶€í„° 50ë§Œì›ê¹Œì§€ ë‹¤ì–‘í•˜ê³ , ì‹ í’ˆì€ ë¶€ë¥´ëŠ”ê²Œ ê°€ê²©.</li>
<li>íœ´ëŒ€ ê°€ëŠ¥: ìžƒì–´ë²„ë ¤ë„ ìš¸ì§€ ì•Šì„ ìžì‹ ì´ ìžˆë‹¤ë©´ ê°€ëŠ¥.</li>
</ul>

<p>2015ë…„ í˜„ìž¬ë¡œ ë”°ì§€ë©´ <strong>ë¹ˆí‹°ì§€</strong>ë‚˜ <strong>ë ˆíŠ¸ë¡œ</strong>ë¡œ ë¶„ë¥˜ë  ìˆ˜ ìžˆëŠ” ì œí’ˆì´ë‹¤. ê³ ê°€í˜• ì´ì–´í° ì‹œìž¥ì„ ê°œì²™í–ˆë‹¤ê³ ë„ í•  ìˆ˜ ìžˆëŠ” ì œí’ˆìœ¼ë¡œ, ë°œë§¤ ë‹¹ì‹œ 8000ì—”ì´ ë„˜ì–´ê°€ëŠ” ì´ì–´í° ì¹˜ê³ ëŠ” ê½¤ë‚˜ íŒŒê²©ì ì¸ ê°€ê²©ì„ ìžëž‘í–ˆë‹¤. (ì§€ê¸ˆì€ 8000ì—”ì´ë©´ "ì“¸ë§Œí•œ ìˆ˜ì¤€ì´ê² êµ°"ì´ë¼ê³  ìƒê°í•˜ëŠ”ê²Œ ì¼ë°˜ì ì´ë‹ˆ, ì˜¤ëž˜ ì‚´ê³  ë³¼ ì¼ì´ë‹¤.) ë°ì´í„°ì‹œíŠ¸ ìƒìœ¼ë¡œëŠ” ìµœê³  27Khzê¹Œì§€ í‘œí˜„ì´ ê°€ëŠ¥í•˜ë‹¤ê³  í•˜ë‚˜, ì£¼ë³€ì— ì‹¤í—˜í•´ ë³¼ ëŒê³ ëž˜ê°€ ì—†ì–´ì„œ ì‹¤ì œë¡œ ê·¸ ì •ë„ê¹Œì§€ ì˜¬ë¼ê°€ëŠ”ì§€ëŠ” ëª¨ë¥´ê² ë‹¤. CDPì™€ MDPê°€ ì£¼ë¥˜ë¥¼ ì´ë£¨ê³ , ì£¼ë³€ì— í•œ ë‘ëª… ì •ë„ê°€ MP3 í”Œë ˆì´ì–´ë¥¼ ê°–ê³  ìžˆì—ˆê³ , ì§€ì¸ê³¼ ì‚¬ëˆì˜ íŒ”ì´Œê¹Œì§€ ë‹¤ ë™ì›í•˜ë©´ <a href="https://archive.is/867dR#selection-195.194-211.54">Sony Music Clip</a> (ì†Œë‹ˆì—ì„œ ì²˜ìŒ ë‚´ë†“ì€ í”Œëž˜ì‹œ ë©”ëª¨ë¦¬ ë¯¸ë””ì–´ í”Œë ˆì´ì–´ë¡œ, ë‚´ìž¥ ë©”ëª¨ë¦¬ê°€ NANDì¸ MDë¼ê³  ìƒê°í•˜ë©´ ëœë‹¤. ì‹¤ì œë¡œ ìŒì„± ì½”ë±ë„ ATRAC3ë¥¼ ì‚¬ìš©í–ˆë‹¤.) ê°–ê³  ìžˆëŠ” ì‚¬ëžŒì´ í•œëŒ€ ë‚˜ì˜¬ê¹Œë§ê¹Œ í•˜ë˜ ì‹œì ˆì˜ ëª…ê¸°.</p>

<p>ë¶„ëª…ížˆ ì†Œë¦¬ëŠ” ì¢‹ë‹¤. 15ë…„ì´ ë„˜ì€ ì œí’ˆì´ë¼ê³  ë¯¿ì„ ìˆ˜ ì—†ì„ ì •ë„ë¡œ í•´ìƒë ¥ì´ ì¢‹ê³  (ë‹¹ëŒ€ ì¼ë°˜ì ì¸ ì´ì–´í° ì¤‘ì— ì§‘ì— ì•„ì§ êµ´ëŸ¬ë‹¤ë‹ˆëŠ”ê±° êº¼ë‚´ì„œ í•œë²ˆ ë“¤ì–´ë³´ë©´ í™•ì‹¤ížˆ ë‹¤ë¥´ë‹¤.), ì´ì–´í°ìœ¼ë¡œ í”í•˜ì§€ ì•Šì€ ì˜¤í”ˆí˜•ì´ë¼ ëª…ì¾Œí•˜ë©´ì„œ ì‹œì›í•œ ì†Œë¦¬ë¥¼ ë‚´ì¤€ë‹¤. ê°œì¸ì ìœ¼ë¡œëŠ” ì†œì„ ì‚¬ìš©í•˜ì§€ ì•Šì•˜ì„ ê²½ìš° ì†Œë¦¬ë¥¼ ë” ì„ í˜¸í•˜ëŠ”ë°, ì„¸ì›”ì´ ì„¸ì›”ì¸ ë§Œí¼ ìµœëŒ€í•œ êµì²´í’ˆì´ ì—†ëŠ” ê³ ë¬´ë§ì— ì§ì ‘ ì ‘ì´‰ì„ í”¼í•˜ê¸° ìœ„í•´ì„œ ì•„ì‰½ì§€ë§Œ ì†œì„ ì‚¬ìš©í•˜ê³  ìžˆë‹¤. ì†œì„ ì‚¬ìš©í•˜ë©´ í•´ìƒë ¥ì´ ë‹¤ì†Œ ë–¨ì–´ì§€ê³  ì €ìŒì— ì¹˜ìš°ì¹˜ëŠ” ê²½í–¥ì´ ìžˆë‹¤. ìž¥ì‹œê°„ ì°©ìš©ì‹œì—ë„ í”¼ë¡œí•˜ì§€ ì•Šìœ¼ë‚˜, ê³ ë¬´ ëª©ì— ë¶€í•˜ë¥¼ ì¤„ ìˆ˜ ìžˆëŠ” ë¬¸ì œê°€ ìžˆë‹¤. (ì´ê²ƒë„ ì˜¤ëž˜ë˜ì—ˆê¸° ë•Œë¬¸ì— ë¬¸ì œê°€ ë˜ëŠ”ë°, ê³ ë¬´ë¥¼ ìƒë‹¹ížˆ ë§Žì´ ì‚¬ìš©í•œ ì œí’ˆì¸ ë§Œí¼ ì˜¤ëž˜ë˜ë©´ ê³ ë¬´ê°€ í•˜ì–—ê²Œ ë˜ëŠ” ë¬¸ì œê°€ ìžˆë‹¤.)</p>

<p>ì‹ í’ˆ êµ¬í•˜ê¸°ê°€ ì–´ë µë‹¤. ì§€ê¸ˆë„ ì „ì„¤ì˜ ì´ì–´í°ì„ ì°¾ì•„ì„œ ì˜¨ë¼ì¸ì„ ì—´ì‹¬ížˆ ë’¤ì§€ëŠ” ìš©ìžë“¤ì´ ìžˆëŠ”ë°, ì¼ë³¸ ìƒì‚° ë¬¼ëŸ‰ ë¯¸ê°œë´‰ì„ êµ¬í•œë‹¤ê³  í•˜ë©´, ì•„ë§ˆë„ ê½¤ë‚˜ ê¸ˆì•¡ì´ ë‚˜ê°ˆ ê²ƒì´ë‹¤. íƒ€ì˜¤ë°”ì˜¤ì—ì„œëŠ” 100ë§Œì›ê¹Œì§€ ë‚˜ê°€ëŠ”ê±¸ ë³´ì•˜ë‹¤. ì´ ì´ì–´í°ì´ ê·¸ë§Œí•œ ê°€ì¹˜ê°€ ìžˆëŠ”ê°€ë¼ê³  ë¬¼ìœ¼ë©´, ì†”ì§ížˆ ì†Œë¦¬ë¡œëŠ” ì•„ë‹ˆì˜¬ì‹œë‹¤ë¼ê³  ìƒê°í•œë‹¤. ë¶„ëª…ížˆ ì¢‹ì€ ì†Œë¦¬ë¥¼ ë‚´ì£¼ëŠ” ì´ì–´í°ì´ê¸´ í•˜ë‚˜, 15ë…„ì´ ë„˜ì€ ì œí’ˆì¸ ë§Œí¼ ê·¸ ì‚¬ì´ì— ê¸°ìˆ ì€ ë§Žì´ ë°œì „í–ˆë‹¤. ë¬¼ë¡  ê³ ê¸‰ ì´ì–´í° ì‹œìž¥ì„ ê°œì²™í–ˆë‹¤ëŠ” ì—­ì‚¬ì  ê°€ì¹˜ë‚˜ ì¶”ì–µìœ¼ë¡œì„œì˜ ì˜ë¯¸ëŠ” ê½¤ ê°•í•˜ë‹¤. íŠ¹ížˆ BA ê¸°ìˆ ì˜ ì§„ë³´ëŠ” ì‹¤ë¡œ ê²½ì´ë¡œìš´ ìˆ˜ì¤€ì´ë‹ˆ ì§€ê¸ˆì™€ì„œ ì €ëŸ° ëˆì„ ë“¤ì—¬ì„œ ì´ ì œí’ˆì„ êµ¬ë§¤í•˜ëŠ”ê±´ í¬ê²Œ ì˜ë¯¸ê°€ ì—†ë‹¤ê³  ìƒê°í•œë‹¤. êµ³ì´ ì„±í–¥ì´ ë¹„ìŠ·í•œê±¸ ì›í•œë‹¤ë©´, B&amp;O 3Ië‚˜ Yuinì‚¬ì˜ PKì‹œë¦¬ì¦ˆê°€ ìžˆìœ¼ë‹ˆ ê·¸ëŸ° ì œí’ˆì„ ì´ìš©í•˜ë©´ ë˜ê² ë‹¤. ì¸¡ì • ê²°ê³¼ëŠ” <a href="http://en.goldenears.net/3145">ì—¬ê¸°</a>ì—.</p>]]></content:encoded></item><item><title><![CDATA[ì°¨ëŸ‰ìš© ë¸”ëž™ë°•ìŠ¤ì˜ ì •ì²´]]></title><description><![CDATA[<p>ì•„ëž˜ ë‚´ìš©ì€ ì „ë¶€ ëŒ€ì¶© ë“¤ì—¬ë‹¤ ë³¸ ê²°ê³¼ ë‚˜ì˜¨ ì¶”ì •ë“¤ì´ë‹¤. "ë¶„ì„"ì´ë¼ê³  í•˜ê¸°ì—ë„ ë¯¼ë§í•œ ìž‘ì—…ì— ì‚¬ìš©í•œ íˆ´ì€ Hex Fiendë¡œ, ê·€ì°®ì•</p>]]></description><link>https://stdio.sangwhan.com/caryangyong-beulraegbagseuyi-jeongce/</link><guid isPermaLink="false">146458b2-2666-4c09-80ff-8d67d4ed7633</guid><dc:creator><![CDATA[Sangwhan Moon]]></dc:creator><pubDate>Sun, 05 Jul 2015 16:00:51 GMT</pubDate><content:encoded><![CDATA[<p>ì•„ëž˜ ë‚´ìš©ì€ ì „ë¶€ ëŒ€ì¶© ë“¤ì—¬ë‹¤ ë³¸ ê²°ê³¼ ë‚˜ì˜¨ ì¶”ì •ë“¤ì´ë‹¤. "ë¶„ì„"ì´ë¼ê³  í•˜ê¸°ì—ë„ ë¯¼ë§í•œ ìž‘ì—…ì— ì‚¬ìš©í•œ íˆ´ì€ Hex Fiendë¡œ, ê·€ì°®ì•„ì„œ ì‹¤ì œë¡œ IDAì— íƒœì›Œë³´ì§€ëŠ” ì•Šì•„ ê·¸ëƒ¥ ì¶”ì •ì´ë¼ëŠ”ê²ƒì„ ë¯¸ë¦¬ ë°í˜€ì•¼ ì˜¤í•´ê°€ ì—†ì„ ë“¯ í•˜ì—¬, ìš°ì„  ì´ë ‡ê²Œ ë°ížŒë‹¤. ì›”ê¸‰ìŸì´ê°€ ì›”ìš”ì¼ ì¶œê·¼ì„ ìƒê°í•˜ë©° ì˜¤ëŠ” ì •ì‹ ì ì¸ í”„ë ˆì…”ë¥¼ ì´ê²¨ë‚´ê¸° ìœ„í•´ ê·¸ëƒ¥ íƒ€ìž„ í‚¬ë§í•œ ê²°ê³¼ì˜ ë¶€ì‚°ë¬¼ë¡œ, í¬ê²Œ ì˜ë¯¸ëŠ” ë‘ì§€ ì•Šì•˜ìœ¼ë©´ í•œë‹¤.</p>

<p>ì•„ë²„ì§€ ì°¨ ì•ž ë²”í¼ë¥¼ ëˆ„ê°€ ê¸ê³  ê°€ì„œ ì˜ìƒì„ ë³´ê² ë‹¤ê³  ë‚œë¦¬ë¥¼ ì¹˜ì…”ì„œ ê·€ì°®ìŒì„ ê°ìˆ˜í•˜ê³  ì„¸íŒ…í•´ë“œë¦°ë‹¤ê³  ë‚˜ë¥¸í•œ ì˜¤í›„ë¥¼ íƒœì›Œë²„ë ¸ë‹¤. (ë³´ëŠ” ë°©ë²•ë„ ëª¨ë¥´ëŠ”ë° ë¸”ëž™ë°•ìŠ¤ ë‹¬ê³  ë‹¤ë‹ˆë©´ ë¬´ìŠ¨ ì˜ë¯¸ê°€ ìžˆëŠ”ì§€ëŠ” ëª¨ë¥´ê² ì§€ë§Œ, ì–´ì¨‹ê±°ë‚˜) ë”±ížˆ í• ì¼ë„ ì—†ì–´, ë³µë‚  ë˜¥ê°œ í›ˆë ¨ê¸‰ íšŒì›ê°€ìž… ë° ì •í’ˆ ì¸ì¦ ì ˆì°¨ë¥¼ ë§ˆì¹œê¹€ì— íŽŒì›¨ì–´ë¥¼ ë‹¤ìš´ë°›ì•„ ë¶„í•´.</p>

<p>(ìž¡ì„¤: ì•„ì´ë‚˜ë¹„ë•Œë„ ëŠê¼ˆì§€ë§Œ, ë‚´ë¹„ê²Œì´ì…˜ íšŒì‚¬ë“¤ í™ˆíŽ˜ì´ì§€ëŠ” ìš•ì´ ë‚˜ì˜¬ ì •ë„ë¡œ ëª» ë§Œë“¤ì—ˆê³  "ì •í’ˆ ë“±ë¡"ì— ëŒ€í•œ íŽ¸ì§‘ì¦ì€ ì‚¬ëžŒì„ ë§¤ìš° í”¼ê³¤í•˜ê²Œ í•œë‹¤. ì´ê²ƒ ë•Œë¬¸ì— ì§€í•˜ ì£¼ì°¨ìž¥ì— ë‹¤ë…€ì˜¤ëŠ” ìˆ˜ê³ ë¥¼ í•´ì•¼í–ˆë‹¤.)</p>

<p>Automotiveë¼ Freescaleì´ê±°ë‚˜ ì¹´ë©”ë¼ë‹ˆê¹Œ Ambarellaë‚˜ ë‘˜ ì¤‘ í•˜ë‚˜ ì“°ê² ì§€ë¼ê³  ìƒê°í–ˆëŠ”ë°, ì˜ì™¸ì˜ ë¬¼ê±´ì´ ì•ˆì— ë“¤ì–´ìžˆì—ˆë‹¤. Core Logicì´ë¼ëŠ” ë“¤ì–´ë³´ì§€ë„ ëª»í•œ íšŒì‚¬ì˜ IPë¥¼ ì‚¬ìš©í•˜ê³  ìžˆì—ˆëŠ”ë°, ì¢€ ë” ì¡°ì‚¬í•´ë³´ë‹ˆ ì•„ì´ë‚˜ë¹„ë„ ì´ê±¸ ì‚¬ìš©í•œë‹¤. ì´ì— ëŒ€í•´ì„œ ì¶”ê°€ì ì¸ ë‚´ìš©ì€ ì•„ëž˜ì—. (ê¸°ì–µì„ ë”ë“¬ì–´ë³´ë‹ˆ, ì´ì „ì— ì‚¼ì„±ë™ì— ì¶œí‡´ê·¼í•˜ë˜ ì‹œì ˆì— ì§€ë‚˜ê°€ë©´ì„œ ê´´ìƒí•˜ê²Œ ìž…ì§€ê°€ ì¢‹ì€ ê³³ì— [ë„ì‹¬ê³µí•­íƒ€ì›Œ ë§žì€íŽ¸] ì´ë¦„ë„ ë“¤ì–´ë³´ì§€ ëª»í•œ íšŒì‚¬ê°€ ìžˆì–´ "ë­˜ê¹Œ" í–ˆë˜ ê¸°ì–µì´ ë– ì˜¬ëžë‹¤. ì§€ê¸ˆì€ ê²½ê¸°ë„ë¡œ ì´ì‚¬ê°„ ë“¯.)</p>

<p>ì‚¬ìš©í•˜ê³  ìžˆëŠ” ì œí’ˆì€ <strong>ë‹¤ë³¸ë‹¤ ížˆë“  II</strong> ë¼ëŠ” 90ë…„ëŒ€ìŠ¤ëŸ¬ìš´ ìž‘ëª… ì„¼ìŠ¤ì˜ ì œí’ˆì´ë‚˜, ì‹¤ì œë¡œ íŽŒì›¨ì–´ë¥¼ ëœ¯ì–´ë³¸ ì œí’ˆì€ IIê°€ ì•„ë‹Œ ê·¸ëƒ¥ <strong>ë‹¤ë³¸ë‹¤ ížˆë“ </strong> ë¼ëŠ” ì œí’ˆì˜ íŽŒì›¨ì–´ì´ë‹¤. ë³„ë¡œ ì°¨ì´ëŠ” ì—†ì§€ ì•Šì„ê¹Œ ì‹¶ë‹¤. ë‚´ìš©ì„ ëœ¯ì–´ë³¸ ê²°ê³¼, ì—¬ëŸ¬ê°€ì§€ ê³µê°œ ë¼ì´ë¸ŒëŸ¬ë¦¬ë¥¼ ì‚¬ìš©í•˜ëŠ”ê²ƒìœ¼ë¡œ ë³´ì˜€ìœ¼ë‚˜, í™•ì‹¤ížˆ ë¦¬ëˆ…ìŠ¤ëŠ” ì•„ë‹ˆì—ˆë‹¤. </p>

<p>í•´ë‹¹ ì œí’ˆì— íƒ‘ìž¬ë˜ì–´ ìžˆëŠ” ì¶”ì • í•˜ë“œì›¨ì–´ëŠ” ì•„ëž˜ì™€ ê°™ë‹¤. (ì´ê±´ ì–´ë””ê¹Œì§€ë‚˜ ì†Œí”„íŠ¸ì›¨ì–´ ë¶„ì„ì— ì˜í•œ ì •ë³´ì´ë©°, ì§ì ‘ ëœ¯ì–´ë³´ì§€ ì•Šì•˜ê¸° ë•Œë¬¸ì— ì •í™•í•˜ì§€ëŠ” ì•Šë‹¤.)</p>

<p>SoC: <a href="http://www.corelogic.co.kr/eng/application/product.php?idx=84">http://www.corelogic.co.kr/eng/application/product.php?idx=84</a> <br>
Camera: <a href="https://www.aptina.com/products/soc/mt9m114/">https://www.aptina.com/products/soc/mt9m114/</a></p>

<p>í¥ë¯¸ë¡œìš´ ê²ƒì€ Core Logicì—ì„œ RTOSë¥¼ ê³µê¸‰í•œë‹¤ëŠ”ê²ƒì´ê³ , ìŠ¬ì© ë“¤ì—¬ë‹¤ ë³¸ ê²°ê³¼ ì‹¤ì œë¡œ ìš´ì˜ì²´ì œëŠ” êµ­ë‚´ ìž„ë² ë””ë“œ ì—…ê³„ì˜ ì•½ë°© ê°ì´ˆì™€ ê°™ì€ ë§ˆë‹¹ì‡ ì˜ NEOSì˜ ë³€ì¢…ìœ¼ë¡œ ë³´ì¸ë‹¤. ì ì–´ë„ ë¶„ì„í•œ ì œí’ˆì€ ê·¸ê²ƒì„ ì‚¬ìš©í•œë‹¤ëŠ”ê²ƒì¸ë°, ìš´ì˜ì²´ì œë¥¼ ë§Œë“¤ê² ë‹¤ê³  ç©ºç´„ì„ ë‚ ë¦¬ê³  ì• ë§¤í•˜ê²Œ ì‚°ìœ¼ë¡œ ê°€ë²„ë¦° Tëª¨ì‚¬ë³´ë‹¤ëŠ” ê±´ì „í•˜ë‹¤ê³  í•  ìˆ˜ ìžˆë‹¤.</p>

<p>ê²Œë‹¤ê°€ OSì—ì„œ NxFSë¼ëŠ” ìžì²´ íŒŒì¼ ì‹œìŠ¤í…œì„ ì‚¬ìš©í•˜ëŠ”ë°, ì‚¬ìš©í•˜ëŠ” ì´ìœ ëŠ” ì •í™•ížˆ ëª¨ë¥´ê² ë‹¤. (ê°€ìž¥ ìœ ë ¥í•œ ì´ìœ ëŠ” MTD ìµœì í™”ëœ ê³µê°œ íŒŒì¼ ì‹œìŠ¤í…œì„ ì‚¬ìš©í•˜ë©´ GPL ìœ„ë°˜ ì˜ì—­ìœ¼ë¡œ ë“¤ì–´ê°€ê³ , íƒ€ ì»¤ë„ì—ì„œ ëœ¯ì–´ë‚´ë©´ì„œ ì˜ì¡´ì„±ì„ í’€ì–´ì£¼ê¸° ìœ„í•œ ìˆ˜ê³ ë¥¼ í”¼í•˜ê¸° ìœ„í•¨ì˜ ë³µí•©ì ì¸ ìš”ì¸ì´ ì•„ë‹ê¹Œ ì¶”ì¸¡ëœë‹¤.) Core Logicì‚¬ì—ì„œ ê³µê°œ ì •ë³´ê°€ ë§Žì§€ ì•Šì•„ì„œ ì¼ë‹¨ì€ ì¡°ì‚¬ê°€ ì¡°ê¸ˆ ì–´ë ¤ìš´ ìƒí™©. ê³µê°œ ì†ŒìŠ¤ë¥¼ ë°œê²¬í•´ì„œ ê·¸ê±¸ ì°¸ê³ í•˜ì—¬ ì·¨ì§€ë¥¼ ì•Œì•„ë‚´ë ¤ í•˜ì˜€ìœ¼ë‚˜, ì†ŒìŠ¤ì˜ ì–‘ì´ ë„ˆë¬´ë‚˜ ë°©ëŒ€í•˜ì—¬ ì¼ë‹¨ì€ ë‚˜ì¤‘ìœ¼ë¡œ ë³´ë¥˜.</p>

<p>ì´ ìžì²´ íŒŒì¼ ì‹œìŠ¤í…œì€ ì·¨ì§€ìƒìœ¼ë¡œëŠ” ì–´ë–¤ì§€ ëª¨ë¥´ê² ìœ¼ë‚˜, ë¶€ìž‘ìš©ìœ¼ë¡œ ìœˆë„ìš° ì‚¬ìš©ìžê°€ ì•„ë‹ˆë©´ ë¸”ëž™ë°•ìŠ¤ ë‚´ìš©ì„ ì—´ì–´ë³¼ ìˆ˜ ì—†ë‹¤ëŠ” ì¹˜ëª…ì ì¸ ë¬¸ì œê°€ ìžˆë‹¤. ê²Œë‹¤ê°€ FUSE í”ŒëŸ¬ê·¸ì¸ì´ë¼ë“ ì§€ ê³µê°œë˜ì–´ ìžˆëŠ” ê²ƒì´ ì—†ë‹¤ëŠ”ê²Œ ë” í° ë¬¸ì œ. ì´ ë¶€ë¶„ì— ëŒ€í•´ì„œëŠ” ë‚˜ì¤‘ì— ì‹œê°„ì´ ë” ë‚˜ë©´ ì¼ë‹¨ í•œë²ˆ ë‹¤ì‹œ ë“¤ì—¬ë‹¤ ë³¼ ìƒê°ì´ë‹¤. (16ê¸°ê°€ì§œë¦¬ SDì¹´ë“œ ë¤í”„ë¥¼ í—¥ìŠ¤ ì—ë””í„°ë¡œ ë“¤ì—¬ë‹¤ë³´ëŠ”ê±´ ì‹œê°„ë„ ê±¸ë¦¬ëŠ”ì§€ë¼, í•  ì¼ì´ ë§¤ìš° ì—†ëŠ” ë‚ ì„ ìœ„í•´ ì•„ê»´ë‘ëŠ”ê±°ë‹¤.)</p>

<p>ì¶”ê°€ì ìœ¼ë¡œ ìž¬ë¯¸ìžˆëŠ” ì‚¬ì‹¤ì€ MT9M114ëŠ” ì›¹ìº ìš©ìœ¼ë¡œ ë§Žì´ ì‚¬ìš©ë˜ëŠ” ê²ƒ ê°™ë‹¤ëŠ” ê²ƒ ì •ë„.</p>

<p>íŽŒì›¨ì–´ ë‚´ìš©ë¬¼:</p>

<ul>
<li>CLBOOT.SYS</li>
<li>lucy_fw_2nd_boot.bin</li>
<li>lucy_fw_eboot.bin</li>
<li>lucy_fw_etc.bin</li>
<li>lucy_fw_main.bin</li>
<li>lucy_fw_minfo.bin</li>
</ul>

<p>íŽŒì›¨ì–´ ì¤‘ì—ì„œ CLBOOT.SYSì™€ lucy_fw_main.binì´ ì‹¤ì œ ì‹¤í–‰ë˜ëŠ” ì½”ë“œì˜ ëŒ€ë¶€ë¶„ì„ ì°¨ì§€í•˜ê³  ìžˆê³  (CLBOOT.SYSëŠ” ëŠë‚Œìƒ OSì™€ ì‹œìŠ¤í…œ ë¼ì´ë¸ŒëŸ¬ë¦¬ ë“±ìœ¼ë¡œ ë³´ì´ê³ , lucy<em>fw</em>main.binì€ ë¦¬ëˆ…ìŠ¤ë¡œ ë”°ì§€ë©´ userlandë¡œ ë³´ì¸ë‹¤. ì‹¤ì œë¡œ RTOSì—ëŠ” userlandì˜ êµ¬ë¶„ì´ ëª…í™•ížˆ ì—†ê³  watchdogì´ ìœ ì¼í•œ ë²•ì¸ ì¶˜ì¶”ì „êµ­ì‹œëŒ€ì´ì§€ë§Œ, ì–´ì¨‹ê±°ë‚˜.) lucy_fw_etc.binì€ ë¦¬ì†ŒìŠ¤ê°€ ë“¤ì–´ê°€ ìžˆëŠ” "íŒŒí‹°ì…˜" ê°™ì€ ëŠë‚Œìœ¼ë¡œ ë³´ì¸ë‹¤. OS ìƒì—ì„œ Rë“œë¼ì´ë¸Œë¡œ ë§¤í•‘ì´ ë˜ëŠ”ê²ƒìœ¼ë¡œ ë³´ì¸ë‹¤. eboot, 2nd_bootëŠ” ì•„ë§ˆë„ ë¶€íŠ¸ë¡œë”ë‚˜ ê·¸ëŸ° ë¥˜ê°€ ì•„ë‹ê¹Œ ì‹¶ë‹¤. ìžì„¸ížˆ ë³´ì§€ëŠ” ì•Šì•˜ìœ¼ë‚˜ ê²½í—˜ìƒ ebootê°€ ëª¨í¬ ê¹”ê³  2nd_bootê°€ ê³ ìŠ¤í†± ì¹˜ëŠ” ê·¸ëŸ° ëŠë‚Œì´ ì•„ë‹ê¹Œ ì‹¶ë‹¤. minfoëŠ” ì •ì²´ë¶ˆëª….</p>

<p>ì¡°ê¸ˆ ì°¾ì•„ë³´ë‹ˆ, <strong>ë‹¤ë³¸ë‹¤ ížˆë“ </strong>ê³¼ í•˜ë“œì›¨ì–´/ì†Œí”„íŠ¸ì›¨ì–´ìƒ ìœ ì‚¬í’ˆì´ í•˜ë‚˜ ìžˆëŠ”ë°, ì „í˜€ ê´€ë ¨ì´ ì—†ëŠ” ì œì¡°ì‚¬ì˜ <strong>ì•„ì´ë‚˜ë¹„ BLACK CLAIR2</strong>ë¼ëŠ” ì œí’ˆì´ë‹¤. ê°™ì€ í”Œëž«í¼ ê¸°ë°˜ì´ê³ , ìŠ¬ì© ë³¸ ê²°ê³¼ ìƒë‹¹ížˆ ë§Žì€ ë¶€ë¶„ì´ ê²¹ì¹œë‹¤. ì•„ë§ˆë„ Core Logicì—ì„œ ì¤€í„´í‚¤ ì†”ë£¨ì…˜ìœ¼ë¡œ ê³µê¸‰ì„ í•˜ê³ , ê°œë³„ ì œì¡°ì‚¬ì—ì„œ BSPë¥¼ ë°›ì•„ì„œ ìƒí’ˆí™”ì™€ ë§ˆì¼€íŒ…ì„ í•˜ëŠ” í˜•íƒœì¸ë“¯ í•˜ë‹¤. Mediatekì´ë‚˜ Ambarellaì˜ ëª¨ë¸ê³¼ ìœ ì‚¬í•˜ë‚˜ êµ­ë‚´ ìœ„ì£¼ë¡œë§Œ í•˜ëŠ” ê²ƒ ê°™ë‹¤. ì°¾ì•„ë³´ë‹ˆ êµ­ë‚´ ì—…ì²´ì—ì„œ ê°™ì€ í•˜ë“œì›¨ì–´ë¡œ GoPro ìœ ì‚¬í’ˆì„ ë§Œë“  ì‚¬ë¡€ë„ ìžˆì—ˆë‹¤. (í•´ì™¸ì—ì„œ Core Logic í”Œëž«í¼ì„ ì‚¬ìš©í•˜ëŠ” ì‚¬ë¡€ë¥¼ ì°¾ì„ ìˆ˜ê°€ ì—†ì—ˆë‹¤.)</p>

<p><strong>TL:DR; ìš”ì•½:</strong> ë¸”ëž™ë°•ìŠ¤ë¼ê³  íŒŒëŠ” ì œí’ˆì€ ì‚¬ì‹¤ìƒ ì½”ì–´ ì†Œí”„íŠ¸ì›¨ì–´ëŠ” ê°™ìœ¼ë©°, RTOSê°€ ëŒê³  ìžˆëŠ” ARM9 ì½”ì–´ì— í•˜ë“œì›¨ì–´ ì¸ì½”ë”ê°€ ë°•ížŒ ë¹„ìƒì‹ì ì¸ ê¶Œìž¥ì†Œë¹„ìžê°€ë¥¼ ìš”êµ¬í•˜ëŠ” USB ì›¹ìº ì´ë‹¤.</p>

<p>(<strong>ë‹¤ë³¸ë‹¤ ížˆë“  II</strong> ê³µì‹ íŒë§¤ê°€ê°€ 33ë§Œ9ì²œì›ì´ë‹¤. MT9M114ëŠ” ë‹¨ê°€ê°€ 6ë¶ˆ ì •ë„ì´ë‹¤. RK3168 ê°™ì´ 1080p ì¸ì½”ë”©ì´ ê°€ëŠ¥í•œ Cortex-A9 ë“€ì–¼ì¹©ì´ ë‚±ê°œ ê°€ê²©ìœ¼ë¡œ ì³ë„ í™”ì°½ë² ì´ì—ì„œ 10ë¶ˆì´ ì•ˆëœë‹¤ëŠ”ê±¸ ê°ì•ˆí•œë‹¤ë©´, ì•„ë¬´ë¦¬ Core Logic IPê°€ ë¹„ì‹¸ë‹¤ê³  í•´ë„ ì œì¡°ì‚¬ì—ì„œ ë‹¨ê°€ ë§Œì› ì´ìƒ ì§€ë¶ˆí•  ê°€ëŠ¥ì„±ì€ ì ë‹¤ê³  ìƒê°ë˜ë‹¤. Fabbingë“±ì´ëž‘ R&amp;Dë¥¼ ê°ì•ˆí•´ë„ ê½¤ë‚˜ ë§ˆì§„ìœ¨ì´ ë†’ì€ ë¬¼ê±´ì´ë‹¤.)</p>

<p>(ì¼ë³¸ì—ì„œ ì•„ì§ë„ Super-Hì™€ ALPì˜ í™”ë ¤í•œ ìž˜ë¼íŒŒê³ ìŠ¤ ì¡°í•©ì„ ì‚¬ìš©í•˜ëŠ” ê²ƒì„ ìš•í•˜ê³  ë‹¤ë…”ëŠ”ë°, í•œêµ­ ë¸”ëž™ë°•ìŠ¤ ì‹œìž¥ë„ ë¹„ìŠ·í•œ ì–‘ìƒì„ ë³´ì´ê³  ìžˆë‹¤ëŠ” ì‚¬ì‹¤ì— ì‚´ì§ ì¶©ê²©.)</p>]]></content:encoded></item></channel></rss>