<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://sylvain.vedrenne.org/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Sylvain Vedrenne</title>
  <link>http://sylvain.vedrenne.org/</link>
  <atom:link href="http://sylvain.vedrenne.org:82/feed/rss2" rel="self" type="application/rss+xml"/>
  <description>Sylvain Vedrenne　シルヴァン・ヴドレンヌ</description>
  <language>en</language>
  <pubDate>Sat, 25 May 2013 12:49:20 +0200</pubDate>
  <copyright>Copyright (c) Sylvain Vedrenne</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Autre code avec prettyprint (prettify)</title>
    <link>http://sylvain.vedrenne.org/post/2011/10/07/Autre-code-avec-prettyprint-%28prettify%29</link>
    <guid isPermaLink="false">urn:md5:ce4a51bb31acf9c7b8434680dbff96e4</guid>
    <pubDate>Fri, 07 Oct 2011 00:44:00 +0200</pubDate>
    <dc:creator>Sylvain</dc:creator>
            
    <description>    &lt;pre class=&quot;prettyprint&quot;&gt;
    public byte popFirstValueForCell(int li, int co) {
        if (isCellFilled(li, co))
            return 0;
        for (byte v = 1; v &amp;lt;= 9; v++) {
            if (isCellValuePossible(li, co, v) &amp;amp;&amp;amp; !isCellValueScreened(li, co, v)) {
                return v;
            } else {
                System.out.println(&amp;quot;GridShadow.popFirstValueForCell() value &amp;quot;+v+&amp;quot; is screened in cell &amp;quot;+li+&amp;quot;,&amp;quot;+co);
            }
        }
        return 0;
    }

    public boolean setCellValueAt(int li, int co, byte value) {
        System.out.println(&amp;quot;GridShadow.setCellValueAt(&amp;quot; + li + &amp;quot;,&amp;quot; + co + &amp;quot;=&amp;gt;&amp;quot;
                + value + &amp;quot;)&amp;quot;);

        cellFlags[offset + 9 * li + co] &amp;amp;= ~MASK_FOR_CURRENT_VALUE;
        cellFlags[offset + 9 * li + co] |= FLAG_CELL_READ_ONLY | value;

        // ligne
        for (int c = 0; c &amp;lt; 9; c++) {
            if (c != co) {
                if (!isCellFilled(li, c) &amp;amp;&amp;amp; isCellValuePossible(li, c, value)) {
                    unsetCellValuePossible(li, c, value);
                    setCellValueScreened(li, c, value);
                    if (getNumberOfPossibleValues(li, c) == 0) {
                        /* DEAD END */
                        return true;
                    }
                }
            }
        }
&lt;/pre&gt;</description>
    
    
    
          <comments>http://sylvain.vedrenne.org/post/2011/10/07/Autre-code-avec-prettyprint-%28prettify%29#comment-form</comments>
      <wfw:comment>http://sylvain.vedrenne.org/post/2011/10/07/Autre-code-avec-prettyprint-%28prettify%29#comment-form</wfw:comment>
      <wfw:commentRss>http://sylvain.vedrenne.org/feed/atom/comments/642490</wfw:commentRss>
      </item>
    
  <item>
    <title>Code using Prettify</title>
    <link>http://sylvain.vedrenne.org/post/2011/10/06/Code-using-Prettify</link>
    <guid isPermaLink="false">urn:md5:83acab6a2cd6701a359536b051e47115</guid>
    <pubDate>Thu, 06 Oct 2011 19:15:00 +0200</pubDate>
    <dc:creator>Sylvain</dc:creator>
            
    <description>    &lt;pre&gt;
&lt;code class=&quot;prettyprint&quot;&gt;package net.jankenpoi.sudokuki.ui.swing;

import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.Icon;
import javax.swing.JFrame;

@SuppressWarnings(&amp;quot;serial&amp;quot;)
public class AboutAction extends AbstractAction {
        
        private JFrame parent;
        
        public AboutAction(JFrame parent, SwingGrid grid, String string, Icon iconHelpAbout,
                        String desc, Integer mnemonic) {
                this.parent = parent;
        }

        @Override
        public void actionPerformed(ActionEvent e) {
                AboutDialog dlg = new AboutDialog(parent);
                dlg.setVisible(true);
        }


}

&lt;/code&gt;
&lt;/pre&gt;</description>
    
    
    
          <comments>http://sylvain.vedrenne.org/post/2011/10/06/Code-using-Prettify#comment-form</comments>
      <wfw:comment>http://sylvain.vedrenne.org/post/2011/10/06/Code-using-Prettify#comment-form</wfw:comment>
      <wfw:commentRss>http://sylvain.vedrenne.org/feed/atom/comments/642422</wfw:commentRss>
      </item>
    
  <item>
    <title>Whatever</title>
    <link>http://sylvain.vedrenne.org/post/2011/10/06/Whatever</link>
    <guid isPermaLink="false">urn:md5:9ab541fa5db5c4b9102b24f9b483b45e</guid>
    <pubDate>Thu, 06 Oct 2011 16:27:00 +0200</pubDate>
    <dc:creator>Sylvain</dc:creator>
            
    <description>    &lt;p&gt;Whatever&lt;/p&gt;</description>
    
    
    
          <comments>http://sylvain.vedrenne.org/post/2011/10/06/Whatever#comment-form</comments>
      <wfw:comment>http://sylvain.vedrenne.org/post/2011/10/06/Whatever#comment-form</wfw:comment>
      <wfw:commentRss>http://sylvain.vedrenne.org/feed/atom/comments/642338</wfw:commentRss>
      </item>
    
  <item>
    <title>日本語はすきですよ！</title>
    <link>http://sylvain.vedrenne.org/post/2011/10/06/%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%81%AF%E3%81%99%E3%81%8D%E3%81%A7%E3%81%99%E3%82%88%EF%BC%81</link>
    <guid isPermaLink="false">urn:md5:7ea5f0e84e66a60ac1a99963068b34a6</guid>
    <pubDate>Thu, 06 Oct 2011 16:22:00 +0200</pubDate>
    <dc:creator>Sylvain</dc:creator>
            
    <description>    &lt;p&gt;日本語はすきですよ！&lt;/p&gt;</description>
    
    
    
          <comments>http://sylvain.vedrenne.org/post/2011/10/06/%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%81%AF%E3%81%99%E3%81%8D%E3%81%A7%E3%81%99%E3%82%88%EF%BC%81#comment-form</comments>
      <wfw:comment>http://sylvain.vedrenne.org/post/2011/10/06/%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%81%AF%E3%81%99%E3%81%8D%E3%81%A7%E3%81%99%E3%82%88%EF%BC%81#comment-form</wfw:comment>
      <wfw:commentRss>http://sylvain.vedrenne.org/feed/atom/comments/642337</wfw:commentRss>
      </item>
    
  <item>
    <title>Welcome! ようこそ！Bienvenue !</title>
    <link>http://sylvain.vedrenne.org/post/2011/10/04/Welcome%21-%E3%82%88%E3%81%86%E3%81%93%E3%81%9D%EF%BC%81-Bienvenue-%21</link>
    <guid isPermaLink="false">urn:md5:e776d9e0ec695521faa198e4318ead96</guid>
    <pubDate>Tue, 04 Oct 2011 22:30:00 +0200</pubDate>
    <dc:creator>Sylvain</dc:creator>
            
    <description>    &lt;p&gt;Welcome! ようこそ！Bienvenue !&lt;/p&gt;</description>
    
    
    
          <comments>http://sylvain.vedrenne.org/post/2011/10/04/Welcome%21-%E3%82%88%E3%81%86%E3%81%93%E3%81%9D%EF%BC%81-Bienvenue-%21#comment-form</comments>
      <wfw:comment>http://sylvain.vedrenne.org/post/2011/10/04/Welcome%21-%E3%82%88%E3%81%86%E3%81%93%E3%81%9D%EF%BC%81-Bienvenue-%21#comment-form</wfw:comment>
      <wfw:commentRss>http://sylvain.vedrenne.org/feed/atom/comments/641979</wfw:commentRss>
      </item>
    
</channel>
</rss>