Done day 2
[advent-of-code-17.git] / README.html
index 6f80db8e882bb84de24ad5ddd8cbb9eb2cda0bec..50c66bbc575addd1a0f6aa99df0d77f06f23a5b2 100644 (file)
@@ -14,6 +14,7 @@
 </div>
 <p>Code to solve the <a href="http://adventofcode.com/2017/">Advent of Code</a> puzzles. This year, I'm using the puzzles to develop my skills in <a href="https://wiki.haskell.org/Haskell">Haskell</a>.</p>
 <p><a href="http://learnyouahaskell.com/chapters">Learn you a Haskell</a>, <a href="https://www.haskell.org/tutorial/index.html">Introduction to Haskell 98</a>, and <a href="https://hackage.haskell.org/">Hackage</a> are good resources.</p>
+<p>The <a href="https://docs.haskellstack.org/en/stable/README/">Stack documentation</a> and <a href="http://howistart.org/posts/haskell/1/">How I Start: Haskell</a> are good sources of using the tools.</p>
 <h1 id="toolchain">Toolchain</h1>
 <p>I'm using the basic Haskell Platform installation, togeher with <code>Stack</code> to manage the packages and dependencies (install with</p>
 <pre><code>$ sudo aptitude install haskell-platform haskell-stack</code></pre>
 <pre><code>stack build --executable-profiling --library-profiling --ghc-options=&quot;-fprof-auto -rtsopts&quot; adventofcode1601</code></pre>
 <p>then run with</p>
 <pre><code>stack exec -- advent01 +RTS -p -hy</code></pre>
+<h1 id="ihaskell">IHaskell</h1>
+<p>Install following the <a href="https://github.com/gibiansky/IHaskell">IHaskell instructions</a>.</p>
+<p>To run, change into the package's directory (after modifying the <code>.cabal</code> file) and run it with</p>
+<pre><code>stack exec jupyter -- notebook</code></pre>
 <h1 id="readme">Readme</h1>
 <p>Build this readme file wth</p>
 <pre><code>pandoc -s README.md &gt; README.html</code></pre>