Article about Hill-Climbing A.I. algorithm redacted

master
Nicolas Schoemaeker (nschoe) 10 years ago
parent e12a7eb7c2
commit fc922da6a7

@ -60,8 +60,8 @@ p {
blockquote {
font-style: italic;
font-family: 'Dancing Script', cursive;
font-size: 1.2em;
font-family: 'Bubbler One', cursive;
font-size: 1.5em;
opacity: 0.5;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

@ -8,5 +8,6 @@ executable site
build-depends: base
, hakyll
, pandoc
, containers
ghc-options: -threaded
default-language: Haskell2010

@ -5,7 +5,8 @@ import Data.Monoid (mappend, (<>))
import Hakyll
import Data.Char (toLower)
import Text.Pandoc
import Text.Pandoc.Options
import qualified Data.Set as S
--------------------------------------------------------------------------------
main :: IO ()
@ -133,9 +134,14 @@ myPandocCompiler' withToc = pandocCompilerWith defaultHakyllReaderOptions $
| otherwise -> writerOpts
Nothing -> writerOpts
where writerOpts = defaultHakyllWriterOptions
where mathExtensions = [Ext_tex_math_dollars, Ext_tex_math_double_backslash, Ext_latex_macros]
defaultExtensions = writerExtensions defaultHakyllWriterOptions
newExtensions = foldr S.insert defaultExtensions mathExtensions
writerOpts = defaultHakyllWriterOptions
{ writerReferenceLinks = True
, writerSectionDivs = True
, writerExtensions = newExtensions
, writerHTMLMathMethod = MathJax ""
, writerHtml5 = True
}
writerWithToc = writerOpts

@ -8,7 +8,7 @@
<link rel="icon" href="/favicon.gif" type="image/gif" sizes="128x128">
<title>nschoe's labs - $title$</title>
<link href='http://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Bubbler+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/css/default.css">
@ -40,6 +40,9 @@
</footer> -->
</div>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),

Loading…
Cancel
Save