<?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: Keisuke URAGO</title>
    <description>The latest articles on DEV Community by Keisuke URAGO (@bravotan).</description>
    <link>https://dev.to/bravotan</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%2F78816%2Fd4efc9fb-9b28-4b7a-92bf-712300ad1e4e.png</url>
      <title>DEV Community: Keisuke URAGO</title>
      <link>https://dev.to/bravotan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bravotan"/>
    <language>en</language>
    <item>
      <title>Begining Nuxt.js on Windows</title>
      <dc:creator>Keisuke URAGO</dc:creator>
      <pubDate>Fri, 10 Aug 2018 03:17:20 +0000</pubDate>
      <link>https://dev.to/bravotan/begining-nuxtjs-on-windows-267c</link>
      <guid>https://dev.to/bravotan/begining-nuxtjs-on-windows-267c</guid>
      <description>&lt;p&gt;Install: PowerShell Core&lt;br&gt;
&lt;a href="https://github.com/PowerShell/PowerShell/releases"&gt;https://github.com/PowerShell/PowerShell/releases&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Install: Scoop and Node.js(Vue CLI, Nuxt.js)&lt;br&gt;
on PowerShell:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
&amp;gt; scoop install nodejs
&amp;gt; npm install -g vue-cli
&amp;gt; vue init nuxt-community/starter-template &amp;lt;new project directory&amp;gt;
&amp;gt; cd &amp;lt;new project directory&amp;gt;
&amp;gt; scoop install yarn
&amp;gt; yarn
&amp;gt; yarn run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;done!&lt;/p&gt;

&lt;p&gt;See also:&lt;br&gt;
Scoop: &lt;a href="https://scoop.sh/"&gt;https://scoop.sh/&lt;/a&gt;&lt;br&gt;
Vue CLI: &lt;a href="https://cli.vuejs.org/"&gt;https://cli.vuejs.org/&lt;/a&gt;&lt;br&gt;
Yarn: &lt;a href="https://yarnpkg.com/"&gt;https://yarnpkg.com/&lt;/a&gt;&lt;br&gt;
Nuxt.js: &lt;a href="https://nuxtjs.org/"&gt;https://nuxtjs.org/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>nuxt</category>
      <category>windows</category>
      <category>scoop</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to set up Emacs to open read-only depending on file location</title>
      <dc:creator>Keisuke URAGO</dc:creator>
      <pubDate>Sat, 21 Jul 2018 16:52:35 +0000</pubDate>
      <link>https://dev.to/bravotan/how-to-set-up-emacs-to-open-read-only-depending-on-file-location-5g6m</link>
      <guid>https://dev.to/bravotan/how-to-set-up-emacs-to-open-read-only-depending-on-file-location-5g6m</guid>
      <description>&lt;p&gt;In order to prevent accidental editing of a file when opening a library of virtual environments such as virtualenv, if you change the Emacs setting, you can open it automatically in read-only state without executing C-x C-q.&lt;/p&gt;

&lt;p&gt;An example of setting targeting pyenv's directory is as follows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight common_lisp"&gt;&lt;code&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;add-hook&lt;/span&gt; &lt;span class="ss"&gt;'find-file-hook&lt;/span&gt;
          &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;lambda&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt;
            &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;dolist&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;pattern&lt;/span&gt; &lt;span class="o"&gt;'&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"~/.pyenv/versions/.*"&lt;/span&gt;
                               &lt;span class="c1"&gt;;; add here&lt;/span&gt;
                               &lt;span class="p"&gt;))&lt;/span&gt;
              &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;string-match&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;expand-file-name&lt;/span&gt; &lt;span class="nv"&gt;pattern&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="nv"&gt;buffer-file-name&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
                  &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;read-only-mode&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
                &lt;span class="p"&gt;))))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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