<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nana Sakisaka</title>
    <description>The latest articles on DEV Community by Nana Sakisaka (@saki7).</description>
    <link>https://dev.to/saki7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F42807%2Fad041645-bf1f-418e-99c6-c457693da31b.jpeg</url>
      <title>DEV Community: Nana Sakisaka</title>
      <link>https://dev.to/saki7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/saki7"/>
    <language>en</language>
    <item>
      <title>Reality of programmer's English skill in non-English-speaking countries?</title>
      <dc:creator>Nana Sakisaka</dc:creator>
      <pubDate>Wed, 15 Nov 2017 18:19:15 +0000</pubDate>
      <link>https://dev.to/saki7/reality-of-programmers-english-skill-in-non-english-speaking-countries-a4j</link>
      <guid>https://dev.to/saki7/reality-of-programmers-english-skill-in-non-english-speaking-countries-a4j</guid>
      <description>&lt;p&gt;English is the de facto standard skill for programmers. People use English for communicating, filing tickets, contacting tech support, documentation, and code comments.&lt;/p&gt;

&lt;p&gt;Importantly, most open-source software is driven by English-speaking community. I still observe some exceptions, for example, technologies/ecosystems behind the Chinese firewalled Internet. They use Chinese, because those are explicitly targeted to Chinese users.&lt;/p&gt;

&lt;p&gt;Basically, I don't want to use software written in non-English language, because I feel like they saying "We don't respect the de facto standard skills."&lt;/p&gt;

&lt;h2&gt;
  
  
  Reality in China (?)
&lt;/h2&gt;

&lt;p&gt;I mentioned Chinese Internet, so let's take a look at their actual code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight cpp"&gt;&lt;code&gt;    &lt;span class="kt"&gt;int64_t&lt;/span&gt; &lt;span class="n"&gt;current_term_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;      &lt;span class="c1"&gt;/// 当前term&lt;/span&gt;
    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt; &lt;span class="n"&gt;voted_for_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;     &lt;span class="c1"&gt;/// 当前term下投的票&lt;/span&gt;
    &lt;span class="n"&gt;LogDB&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;log_db_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;             &lt;span class="c1"&gt;/// log持久存储&lt;/span&gt;
    &lt;span class="kt"&gt;int64_t&lt;/span&gt; &lt;span class="n"&gt;log_index_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;         &lt;span class="c1"&gt;/// 上一条log的index&lt;/span&gt;
    &lt;span class="kt"&gt;int64_t&lt;/span&gt; &lt;span class="n"&gt;log_term_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;          &lt;span class="c1"&gt;/// 上一条log的term&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://github.com/baidu/bfs/blob/2f69b86f5251a642a648582dfc17dbe2a871800e/src/nameserver/raft_node.h#L84-L88"&gt;https://github.com/baidu/bfs/blob/2f69b86f5251a642a648582dfc17dbe2a871800e/src/nameserver/raft_node.h#L84-L88&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I am simply so surprised by these code comments, written in Chinese. My point is, this project is not a hobby project uploaded by some anonymous students. This is a huge framework developed by a huge company (Baidu Inc. is the #1 internet search engine in China).&lt;/p&gt;

&lt;h3&gt;
  
  
  EDIT: The code
&lt;/h3&gt;

&lt;p&gt;Let me explain this code a bit more. Take a look at the second line,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight cpp"&gt;&lt;code&gt;    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt; &lt;span class="n"&gt;voted_for_&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;     &lt;span class="c1"&gt;/// 当前term下投的票&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;What does this variable mean?&lt;/p&gt;

&lt;p&gt;Well... the variable's named "voted for", so it should be containing the target's name as a string. Now take a look at the comment:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight cpp"&gt;&lt;code&gt;&lt;span class="c1"&gt;/// 当前term下投的票&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you have some experience with wild source codes, you may have noticed the word &lt;strong&gt;&lt;code&gt;term&lt;/code&gt;&lt;/strong&gt; inside the comment. This is acutually an important hint; the &lt;code&gt;voted_for_&lt;/code&gt; variable actually refers to the vote target, voted under the "current term" on the previous line.&lt;/p&gt;

&lt;p&gt;Well, you &lt;em&gt;could&lt;/em&gt; guess this real meaning without knowing any Chinese, but if you didn't know the fact that &lt;code&gt;当前term下投的票&lt;/code&gt; == &lt;code&gt;the vote cast under the current term&lt;/code&gt;, it'd be really hard.&lt;/p&gt;

&lt;h2&gt;
  
  
  Reality in Japan
&lt;/h2&gt;

&lt;p&gt;I live in Japan. This section is based on my personal experience. Includes daily observations on Japanese Twitter timeline.&lt;/p&gt;

&lt;p&gt;Japan have been historically allergic to foreign culture. Japanese people have even isolated their entire country from the world, since AD 1639 to 1854 (see &lt;a href="https://en.wikipedia.org/wiki/Sakoku"&gt;https://en.wikipedia.org/wiki/Sakoku&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;The poor English skills of Japanese people are mostly based on this "I fear foreign culture" stuff. We do have English included in compulsory education, but we just don't speak English in real life (because everything is written in Japanese &amp;amp; that being "so normal").&lt;/p&gt;

&lt;p&gt;Japanese programmers are not exceptions. This 'poor English skill' have been a problem since the beginning of the Internet, but this issue is becoming more and more problematic, thanks to the rise of open-source software.&lt;/p&gt;

&lt;p&gt;Some famous Japanese tech companies are willing to solve this problem. Rakuten Inc., one of the most popular online shopping infra, have set English to their official company language. This event was called "Englishnization" (you can see this on their official company site &lt;a href="https://corp.rakuten.co.jp/careers/culture/"&gt;https://corp.rakuten.co.jp/careers/culture/&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;The "Englishnization" have failed, obviously (as you can see, their company site is written in Japanese). This failure was so ironic that even normal Japanese  people (i.e. non-programmers) mention about their failure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Your country?
&lt;/h2&gt;

&lt;p&gt;Japanese people talk about this 'poor English skill' issue so much. Maybe too much. On Twitter, I see some random Japanese person saying 'Japanese programmers suck because they have poor English skills.' Those tweets are being quickly spread around programmers; eventually receiving more than 2k retweets / likes.&lt;/p&gt;

&lt;p&gt;Is this situation 'normal' outside Japan? How about your country? How do English-speaking countries think about this issue?&lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
  </channel>
</rss>
