Compare commits

..

2 commits

Author SHA1 Message Date
Yann Esposito (Yogsototh) ae59840ef6
wip 2021-09-06 10:06:18 +02:00
Yann Esposito (Yogsototh) 9ae2c4e0da
First pass 2021-08-30 10:22:23 +02:00
241 changed files with 4262 additions and 3971 deletions

113
Makefile
View file

@ -1,5 +1,6 @@
# Generate my website out of org-mode/gemini files # Generate my website out of org-mode/gemini files
all: site all: site
SRC_DIR ?= src SRC_DIR ?= src
DST_DIR ?= _site DST_DIR ?= _site
@ -8,47 +9,26 @@ CACHE_DIR ?= .cache
# we don't want to publish files in drafts # we don't want to publish files in drafts
NO_DRAFT := -not -path '$(SRC_DIR)/drafts/*' NO_DRAFT := -not -path '$(SRC_DIR)/drafts/*'
# we don't copy source files # we don't copy source files
NO_SRC_FILE := ! -name '*.org' ! -name '*.css' NO_SRC_FILE := ! -name '*.org'
define adv_rule
SRC_$(1) := $$(shell find $$(SRC_DIR) -type f $(2))
DST_$(1) := $$(patsubst $$(SRC_DIR)/%,$$(DST_DIR)/%,$$(SRC_$(1)))
$$(DST_DIR)/%$(4): $$(SRC_DIR)/%$(4) $$(ENV_VARS)
@mkdir -p "$$(dir $$@)"
$(3)
.PHONY: $(1)
$(1): $$(DST_$(1))
ALL += $(1)
endef
define rule
SRC_$(1) := $$(shell find $$(SRC_DIR) -type f $(2))
DST_$(1) := $$(patsubst $$(SRC_DIR)/%,$$(DST_DIR)/%,$$(SRC_$(1)))
$$(DST_DIR)/%.$(1): $$(SRC_DIR)/%.$(1) $$(ENV_VARS)
@mkdir -p "$$(dir $$@)"
$(3)
.PHONY: $(1)
$(1): $$(DST_$(1))
ALL += $(1)
endef
# Prevent path/nix bugs
ENV_VARS := ./engine/envvars.sh
NIX_FILES := ./shell.nix $(shell find nix -type f)
$(ENV_VARS): $(NIX_FILES)
$(info Build ${ENV_VARS})
@echo "export PATH=\"${PATH}\"" >> ./engine/envvars.sh
.PHONY: envvars
envvars: $(ENV_VARS)
ALL += envvars
# ASSETS # ASSETS
$(eval $(call adv_rule,assets,$$(NO_DRAFT) $$(NO_SRC_FILE),cp "$$<" "$$@",)) SRC_RAW_FILES := $(shell find $(SRC_DIR) -type f $(NO_DRAFT) $(NO_SRC_FILE))
DST_RAW_FILES := $(patsubst $(SRC_DIR)/%,$(DST_DIR)/%,$(SRC_RAW_FILES))
$(DST_DIR)/%: $(SRC_DIR)/%
@mkdir -p "$(dir $@)"
cp "$<" "$@"
.PHONY: assets
assets: $(DST_RAW_FILES)
ALL += assets
# CSS # CSS
# $(info $(call rule,css,-name '*.css',minify "$$<" > "$$@")) SRC_CSS_FILES := $(shell find $(SRC_DIR) -type f -name '*.css')
$(eval $(call rule,css,-name '*.css',minify "$$<" > "$$@")) DST_CSS_FILES := $(patsubst $(SRC_DIR)/%,$(DST_DIR)/%,$(SRC_RAW_FILES))
$(DST_DIR)/%.css: $(SRC_DIR)/%.css
@mkdir -p "$(dir $@)"
minify "$<" > "$@"
css: $(DST_CSS_FILES)
ALL += css
# ORG -> HTML # ORG -> HTML
EXT ?= .org EXT ?= .org
@ -57,12 +37,9 @@ DST_PANDOC_FILES ?= $(patsubst %$(EXT),%.html, \
$(patsubst $(SRC_DIR)/%,$(DST_DIR)/%, \ $(patsubst $(SRC_DIR)/%,$(DST_DIR)/%, \
$(SRC_PANDOC_FILES))) $(SRC_PANDOC_FILES)))
PANDOC_TEMPLATE ?= templates/post.html PANDOC_TEMPLATE ?= templates/post.html
PANDOC_LUA_FILTER ?= engine/links-to-html.lua
PANDOC_LUA_FILTER_IMG ?= engine/img-to-webp.lua
PANDOC_LUA_METAS ?= engine/metas.lua
MK_HTML := engine/mk-html.sh MK_HTML := engine/mk-html.sh
PANDOC := $(MK_HTML) $(PANDOC_TEMPLATE) $(PANDOC_LUA_FILTER) $(PANDOC_LUA_FILTER_IMG) $(PANDOC_LUA_METAS) PANDOC := $(MK_HTML) $(PANDOC_TEMPLATE)
$(DST_DIR)/%.html: $(SRC_DIR)/%.org $(PANDOC_TEMPLATE) $(PANDOC_LUA_FILTER) $(PANDOC_LUA_FILTER_IMG) $(PANDOC_LUA_METAS) $(MK_HTML) $(ENV_VARS) $(DST_DIR)/%.html: $(SRC_DIR)/%.org $(PANDOC_TEMPLATE) $(MK_HTML)
@mkdir -p "$(dir $@)" @mkdir -p "$(dir $@)"
$(PANDOC) "$<" "$@.tmp" $(PANDOC) "$<" "$@.tmp"
minify --mime text/html "$@.tmp" > "$@" minify --mime text/html "$@.tmp" > "$@"
@ -79,7 +56,7 @@ RSS_CACHE_DIR ?= $(CACHE_DIR)/rss
DST_XML_FILES ?= $(patsubst %.org,%.xml, \ DST_XML_FILES ?= $(patsubst %.org,%.xml, \
$(patsubst $(SRC_POSTS_DIR)/%,$(RSS_CACHE_DIR)/%, \ $(patsubst $(SRC_POSTS_DIR)/%,$(RSS_CACHE_DIR)/%, \
$(SRC_POSTS_FILES))) $(SRC_POSTS_FILES)))
$(RSS_CACHE_DIR)/%.xml: $(DST_POSTS_DIR)/%.html $(ENV_VARS) $(RSS_CACHE_DIR)/%.xml: $(DST_POSTS_DIR)/%.html
@mkdir -p "$(dir $@)" @mkdir -p "$(dir $@)"
hxclean "$<" > "$@" hxclean "$<" > "$@"
.PHONY: indexcache .PHONY: indexcache
@ -97,13 +74,19 @@ $(INDEX_CACHE_DIR)/%.index: $(INDEX_CACHE_DIR)/%.xml $(MK_INDEX_ENTRY) $(ENV_VAR
HTML_INDEX := $(DST_DIR)/index.html HTML_INDEX := $(DST_DIR)/index.html
MKINDEX := engine/mk-index.sh MKINDEX := engine/mk-index.sh
INDEX_TEMPLATE ?= templates/index.html INDEX_TEMPLATE ?= templates/index.html
$(HTML_INDEX): $(DST_INDEX_FILES) $(MKINDEX) $(INDEX_TEMPLATE) $(ENV_VARS) $(HTML_INDEX): $(DST_INDEX_FILES) $(MKINDEX) $(INDEX_TEMPLATE)
@mkdir -p $(DST_DIR) @mkdir -p $(DST_DIR)
$(MKINDEX) $(MKINDEX)
.PHONY: index .PHONY: index
index: $(HTML_INDEX) index: $(HTML_INDEX)
ALL += index ALL += index
ENV_VARS := ./engine/envvars.sh
NIX_FILES := ./shell.nix $(shell find nix -type f)
$(ENV_VARS): $(NIX_FILES)
@echo "export PATH=\"${PATH}\"" >> ./engine/envvars.sh
ALL += ./engine/envvars.sh
# RSS # RSS
DST_RSS_FILES ?= $(patsubst %.xml,%.rss, $(DST_XML_FILES)) $(ENV_VARS) DST_RSS_FILES ?= $(patsubst %.xml,%.rss, $(DST_XML_FILES)) $(ENV_VARS)
MK_RSS_ENTRY := ./engine/mk-rss-entry.sh MK_RSS_ENTRY := ./engine/mk-rss-entry.sh
@ -146,39 +129,41 @@ ALL += $(GMI_INDEX)
gmi-index: $(GMI_INDEX) gmi-index: $(GMI_INDEX)
# RSS # RSS
GMI_ATOM := $(DST_DIR)/gem-atom.xml GEM_ATOM := $(DST_DIR)/gem-atom.xml
MK_GEMINI_ATOM := engine/mk-gemini-atom.sh MK_GEMINI_ATOM := engine/mk-gemini-atom.sh
$(GMI_ATOM): $(DST_GMI_FILES) $(MK_GEMINI_ATOM) $(GEM_ATOM): $(DST_GMI_FILES) $(MK_GEMINI_ATOM)
$(MK_GEMINI_ATOM) $(MK_GEMINI_ATOM)
ALL += $(GMI_ATOM) ALL += $(GEM_ATOM)
.PHONY: gmi-atom .PHONY: gmi-atom
gmi-atom: $(GMI_ATOM) gmi-atom: $(GMI_ATOM)
.PHONY: gemini .PHONY: gemini
gemini: $(DST_GMI_FILES) $(GMI_INDEX) $(GMI_ATOM) gemini: $(DST_GMI_FILES) $(GMI_INDEX) $(GEM_ATOM)
# Images # Images
SRC_IMG_FILES ?= $(shell find $(SRC_DIR) -type f -name "*.jpg" -or -name "*.jpeg" -or -name "*.gif" -or -name "*.png")
DST_IMG_FILES ?= $(patsubst $(SRC_DIR)/%,$(DST_DIR)/%, $(SRC_IMG_FILES))
OPTIM_IMG := engine/optim-img.sh OPTIM_IMG := engine/optim-img.sh
define img $(DST_DIR)/%.jpg: $(SRC_DIR)/%.jpg $(OPTIM_IMG)
SRC_IMG_$(1) ?= $$(shell find $$(SRC_DIR) -type f -name "*.$(1)") @mkdir -p $(dir $@)
DST_IMG_$(1) ?= $$(patsubst $$(SRC_DIR)/%,$$(DST_DIR)/%,$$(SRC_IMG_$(1))) $(OPTIM_IMG) "$<" "$@"
$$(DST_DIR)/%.$(1): $$(SRC_DIR)/%.$(1) $$(OPTIM_IMG)
@mkdir -p $$(dir $$@)
$$(OPTIM_IMG) "$$<" "$$@"
.PHONY: $(1)
$(1): $$(DST_IMG_$(1))
ALL += $(1)
endef
$(info $(call img,jpg)) $(DST_DIR)/%.jpg: $(SRC_DIR)/%.jpeg $(OPTIM_IMG)
$(eval $(call img,jpg)) @mkdir -p $(dir $@)
$(eval $(call img,jpeg)) $(OPTIM_IMG) "$<" "$@"
$(eval $(call img,gif))
$(eval $(call img,png)) $(DST_DIR)/%.gif: $(SRC_DIR)/%.gif $(OPTIM_IMG)
@mkdir -p $(dir $@)
$(OPTIM_IMG) "$<" "$@"
$(DST_DIR)/%.png: $(SRC_DIR)/%.png $(OPTIM_IMG)
@mkdir -p $(dir $@)
$(OPTIM_IMG) "$<" "$@"
.PHONY: img .PHONY: img
img: jpg jpeg gif png img: $(DST_IMG_FILES)
ALL += $(DST_IMG_FILES)
# DEPLOY # DEPLOY
.PHONY: site .PHONY: site

3
engine/compresscss.sh Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
minify "$1" > "$2"

View file

@ -1,8 +1,5 @@
#!/usr/bin/env zsh #!/usr/bin/env zsh
cd "$(git rev-parse --show-toplevel)" || exit 1
source ./engine/envvars.sh
## colors for tput ## colors for tput
# black=0 # black=0
red=1 red=1
@ -16,11 +13,8 @@ green() { printf "$(tput setaf $green)%s$(tput sgr0)" "$*" }
yellow() { printf "$(tput setaf $yellow)%s$(tput sgr0)" "$*" } yellow() { printf "$(tput setaf $yellow)%s$(tput sgr0)" "$*" }
blue() { printf "$(tput setaf $blue)%s$(tput sgr0)" "$*" } blue() { printf "$(tput setaf $blue)%s$(tput sgr0)" "$*" }
pipegreen() {while read line; do green $line; done} tee >(lorri watch | sed 's/^/[lorri] /' ) \
pipeyellow() {while read line; do yellow $line; done} >(./engine/serve.sh | sed 's/^/[http] /') \
pipeblue() {while read line; do blue $line; done} >(./engine/auto-build.sh | sed 's/^/[make] /') \
>(sleep 1 && open 'http://127.0.0.1:3000')
tee >(lorri watch | sed 's/^/[lorri] /' | pipegreen ) \
>(./engine/serve.sh | sed 's/^/[http] /' | pipeyellow) \
>(./engine/auto-build.sh | sed 's/^/[make] /' | pipeblue) \
>(sleep 1 && open 'http://127.0.0.1:3077')

View file

@ -1,9 +0,0 @@
-- img-to-webp.lua
function Image(el)
local fileext = el.src:match("%.[^%.]+$");
-- DEBUG -- print("LUA IMG: ", fileext);
if ( fileext == ".jpg" or fileext == ".png" or fileext == ".jpeg" ) then
el.src = el.src .. ".webp"
end
return el
end

View file

@ -1,27 +0,0 @@
server.bind = "0.0.0.0"
server.port = 3077
server.document-root = var.CWD + "/_site/"
index-file.names = ( "index.html" )
mimetype.assign = (
".css" => "text/css",
".gif" => "image/gif",
".htm" => "text/html",
".html" => "text/html",
".jpeg" => "image/jpeg",
".jpg" => "image/jpeg",
".js" => "text/javascript",
".png" => "image/png",
".swf" => "application/x-shockwave-flash",
".txt" => "text/plain",
".gmi" => "text/plain",
".svg" => "image/svg+xml",
".svgz" => "image/svg+xml"
)
# Making sure file uploads above 64k always work when using IE or Safari
# For more information, see http://trac.lighttpd.net/trac/ticket/360
$HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" {
server.max-keep-alive-requests = 0
}

View file

@ -1,5 +0,0 @@
-- links-to-html.lua
function Link(el)
el.target = string.gsub(string.gsub(el.target, "%.org", ".html"), "%.html::", ".html#" )
return el
end

View file

@ -1,22 +0,0 @@
-- intermediate store for variables and their values
local variables = {}
--- Function called for each raw block element.
function RawBlock (raw)
-- Don't do anything unless the block contains *org* markup.
if raw.format ~= 'org' then return nil end
-- extract variable name and value
local name, value = raw.text:match '#%+(%w+):%s*(.+)$'
if name and value then
variables[name] = value
end
end
-- Add the extracted variables to the document's metadata.
function Meta (meta)
for name, value in pairs(variables) do
meta[name] = value
end
return meta
end

View file

@ -3,11 +3,8 @@ set -eu
cd "$(git rev-parse --show-toplevel)" || exit 1 cd "$(git rev-parse --show-toplevel)" || exit 1
template="$1" template="$1"
luafilter="$2" orgfile="$2"
luafilterimg="$3" htmlfile="$3"
luametas="$4"
orgfile="$5"
htmlfile="$6"
tocoption="" tocoption=""
if grep -ie '^#+options:' "$orgfile" | grep 'toc:t'>/dev/null; then if grep -ie '^#+options:' "$orgfile" | grep 'toc:t'>/dev/null; then
@ -17,9 +14,6 @@ fi
set -x set -x
pandoc $tocoption \ pandoc $tocoption \
--template="$template" \ --template="$template" \
--lua-filter="$luafilter" \
--lua-filter="$luafilterimg" \
--lua-filter="$luametas" \
--mathml \ --mathml \
--from org \ --from org \
--to html5 \ --to html5 \

View file

@ -28,7 +28,7 @@ keywords=( $(findkeywords $xfic) )
printf ": %-55s" "$title ($keywords)" printf ": %-55s" "$title ($keywords)"
{ printf "\\n<li>" { printf "\\n<li>"
printf "\\n<span class=\"pubDate\">%s</span>" "$d" printf "\\n<span class=\"pubDate\">%s</span>" "$d"
printf "\\n<span class=\"post-title\"><a href=\"%s\">%s</a></span>" "${blogfile}" "$title" printf "\\n<a href=\"%s\">%s</a>" "${blogfile}" "$title"
printf "\\n</li>\\n\\n" printf "\\n</li>\\n\\n"
} > ${dst} } > ${dst}

View file

@ -37,7 +37,7 @@ for fic in $(ls $tmpdir/*.index | sort -r); do
done done
echo "</ul>" >> $tmpdir/index echo "</ul>" >> $tmpdir/index
title="Home" title="Y"
description="Most recent articles" description="Most recent articles"
author="Yann Esposito" author="Yann Esposito"
body=$(< $tmpdir/index) body=$(< $tmpdir/index)

69
engine/optim-classes.sh Executable file
View file

@ -0,0 +1,69 @@
#!/usr/bin/env zsh
cd "$(git rev-parse --show-toplevel)" || exit 1
webdir="_optim"
retrieve_classes_in_html () {
cat $webdir/**/*.html | \
perl -pe 's/class="?([a-zA-Z0-9_-]*)/\nCLASS: $1\n/g'
}
retrieve_classes_in_css () {
cat $webdir/**/*.css | \
perl -pe 's/ \.([a-zA-Z-_][a-zA-Z0-9-_]*)/\nCLASS:$1\n/g'
}
classes=( $( {retrieve_classes_in_html; retrieve_classes_in_css}| \
egrep "^CLASS: [^ ]*$" |\
sort -u | \
awk '$2 !~ /(gzwebfilesize|webfilesize|yyydate|example|src)/ {print length($2),$2}'|\
sort -rn | \
awk '{print $2}') )
chr() {
[ "$1" -lt 26 ] || return 1
printf "\\$(printf '%03o' $(( 97 + $1 )))"
}
shortName() {
if [ "$1" -gt 25 ]; then
print -- $(shortName $(( ( $1 / 26 ) - 1 )))$(shortName $(( $1 % 26 )))
else
chr $1
fi
}
i=0;
typeset -A assoc
for c in $classes; do
sn=$(shortName $i)
print -- "$c -> $sn"
assoc[$c]=$sn
((i++))
done
htmlreplacer=''
cssreplacer=''
for long in $classes; do
htmlreplacer=$htmlreplacer's#class=("?)'${long}'#class=$1'${assoc[$long]}'#g;'
cssreplacer=$cssreplacer's#\.'${long}'#.'${assoc[$long]}'#g;'
done
sizeof() {
stat --format="%s" "$*"
}
for fic in $webdir/**/*.{html,xml}(N); do
before=$(sizeof $fic)
print -n -- "$fic ($before"
perl -pi -e $htmlreplacer $fic
after=$(sizeof $fic)
print -- " => $after [$(( ((before - after) * 100) / before ))%])"
done
for fic in $webdir/**/*.css(N); do
before=$(sizeof $fic)
print -n -- "$fic ($before"
perl -pi -e $cssreplacer $fic
after=$(sizeof $fic)
print -- " => $after [$(( ((before - after) * 100) / before ))%])"
done

26
engine/optim-html.sh Executable file
View file

@ -0,0 +1,26 @@
#!/usr/bin/env zsh
cd "$(git rev-parse --show-toplevel)" || exit 1
webdir="_optim"
debug () {
print -- $* >/dev/null
}
type -a filelist
setopt extendedglob
if (($#>0)); then
filelist=( $* )
else
filelist=( $webdir/**/*.html(.) )
fi
tmp=$(mktemp)
for fic in $filelist; do
print -n -- "$fic "
cp $fic $tmp
perl -pi -e 's#<div id="outline-container-[^"]*"([^>]*)>#<div$1>#g;s# id="org[a-f0-9]{7}"##g;s# class="src src-# class="src-#g;s#<label class="org-src-name">#<label>#g;s#<div class="org-src-container">#<div>#g' $tmp
minify --mime text/html $tmp > $fic
print "[OK]"
done

View file

@ -7,20 +7,10 @@ sizeof() {
stat --format="%s" "$*" stat --format="%s" "$*"
} }
convert "$src" -resize 800x800\> -quality 50 "$dst"
convert "$src" -resize 800x800\> "$dst"
before=$(sizeof $src) before=$(sizeof $src)
after=$(sizeof $dst)
if [[ "${src:e}" == "gif" ]]; then
after=$(sizeof $dst)
dest=$dst
else
cwebp "$dst" -quiet -o "$dst.webp"
after=$(sizeof $dst.webp)
dest=$dst.webp
fi
if (( before <= after )); then if (( before <= after )); then
cp -f "$src" "$dst" cp -f "$src" "$dst"

View file

@ -23,7 +23,7 @@ dst="$2"
echo "=> /slides.gmi Slides" echo "=> /slides.gmi Slides"
echo "=> /about-me.gmi About" echo "=> /about-me.gmi About"
echo "" echo ""
echo "=> https://git.esy.fun code" echo "=> https://gitea.esy.fun code"
echo "=> https://espial.esy.fun/u:yogsototh bookmarks" echo "=> https://espial.esy.fun/u:yogsototh bookmarks"
echo "=> https://espial.esy.fun/u:yogsototh/notes notes" echo "=> https://espial.esy.fun/u:yogsototh/notes notes"
} >> "$dst" } >> "$dst"

View file

@ -2,6 +2,12 @@
cd "$(git rev-parse --show-toplevel)" || exit 1 cd "$(git rev-parse --show-toplevel)" || exit 1
webdir="_site" if (( $# == 0 )); then
echo "Serving: $webdir on http://localhost:3077" && \ webdir="_site"
lighttpd -f ./engine/lighttpd.conf -D else
webdir="$1"
fi
cd $webdir && \
echo "Serving: $webdir" && \
http-server -p 3000

View file

@ -5,10 +5,10 @@
"homepage": "https://haskell.org/ghc/", "homepage": "https://haskell.org/ghc/",
"owner": "alpmestan", "owner": "alpmestan",
"repo": "ghc.nix", "repo": "ghc.nix",
"rev": "c31bcab7a74569e6bd37dbe7de94c97cad1e35e1", "rev": "9adaf8abe53fa0618c1561919ddfbc4342fe144b",
"sha256": "05g4v4rgq0zh35461b3cv9p13pyg27pipfq3ia8zdmrlmwnvpxpd", "sha256": "0qmkkildzl21y88czgnschvi8mdkqrj9hgvpban58zzjnxw5s4nd",
"type": "tarball", "type": "tarball",
"url": "https://github.com/alpmestan/ghc.nix/archive/c31bcab7a74569e6bd37dbe7de94c97cad1e35e1.tar.gz", "url": "https://github.com/alpmestan/ghc.nix/archive/9adaf8abe53fa0618c1561919ddfbc4342fe144b.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}, },
"niv": { "niv": {
@ -17,22 +17,34 @@
"homepage": "https://github.com/nmattia/niv", "homepage": "https://github.com/nmattia/niv",
"owner": "nmattia", "owner": "nmattia",
"repo": "niv", "repo": "niv",
"rev": "723f0eeb969a730db3c30f977c2b66b9dce9fe4a", "rev": "f73bf8d584148677b01859677a63191c31911eae",
"sha256": "0016l7230gd2kdh0g2w573r9a2krqb7x4ifcjhhsn4h1bwap7qr0", "sha256": "0jlmrx633jvqrqlyhlzpvdrnim128gc81q5psz2lpp2af8p8q9qs",
"type": "tarball", "type": "tarball",
"url": "https://github.com/nmattia/niv/archive/723f0eeb969a730db3c30f977c2b66b9dce9fe4a.tar.gz", "url": "https://github.com/nmattia/niv/archive/f73bf8d584148677b01859677a63191c31911eae.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}, },
"nixpkgs": { "nixpkgs": {
"branch": "nixpkgs-23.05-darwin", "branch": "nixpkgs-20.09-darwin",
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to", "description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",
"homepage": "https://github.com/NixOS/nixpkgs", "homepage": "https://github.com/NixOS/nixpkgs",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2e7346c2d611c1b40e1cf74f177b2b1a329782ce", "rev": "e716ddfac4be879ffbae75c3914a538dd5d4d12e",
"sha256": "0fazcnxlc9xpcvljlj7xxc6p2450vfngpf39xvskrjs8jlzp4hr9", "sha256": "0c2090sz4nvd1bqa9bfz3b6mj0q8b7v4jzgsykn2hf291l3h94d6",
"type": "tarball", "type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/2e7346c2d611c1b40e1cf74f177b2b1a329782ce.tar.gz", "url": "https://github.com/NixOS/nixpkgs/archive/e716ddfac4be879ffbae75c3914a538dd5d4d12e.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"shake": {
"branch": "master",
"description": "Shake build system",
"homepage": "http://shakebuild.com",
"owner": "ndmitchell",
"repo": "shake",
"rev": "4536d9ce5cef0e56395fd61ccef9816c9b420fd1",
"sha256": "1s7hjhcc09l026jaca3ndbb103s9d7qlx4vqzx2s6j4rr751nd70",
"type": "tarball",
"url": "https://github.com/ndmitchell/shake/archive/4536d9ce5cef0e56395fd61ccef9816c9b420fd1.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
} }
} }

View file

@ -6,54 +6,25 @@ let
# The fetchers. fetch_<type> fetches specs of type <type>. # The fetchers. fetch_<type> fetches specs of type <type>.
# #
fetch_file = pkgs: name: spec: fetch_file = pkgs: spec:
let
name' = sanitizeName name + "-src";
in
if spec.builtin or true then if spec.builtin or true then
builtins_fetchurl { inherit (spec) url sha256; name = name'; } builtins_fetchurl { inherit (spec) url sha256; }
else else
pkgs.fetchurl { inherit (spec) url sha256; name = name'; }; pkgs.fetchurl { inherit (spec) url sha256; };
fetch_tarball = pkgs: name: spec: fetch_tarball = pkgs: name: spec:
let let
name' = sanitizeName name + "-src"; ok = str: ! builtins.isNull (builtins.match "[a-zA-Z0-9+-._?=]" str);
# sanitize the name, though nix will still fail if name starts with period
name' = stringAsChars (x: if ! ok x then "-" else x) "${name}-src";
in in
if spec.builtin or true then if spec.builtin or true then
builtins_fetchTarball { name = name'; inherit (spec) url sha256; } builtins_fetchTarball { name = name'; inherit (spec) url sha256; }
else else
pkgs.fetchzip { name = name'; inherit (spec) url sha256; }; pkgs.fetchzip { name = name'; inherit (spec) url sha256; };
fetch_git = name: spec: fetch_git = spec:
let builtins.fetchGit { url = spec.repo; inherit (spec) rev ref; };
ref =
spec.ref or (
if spec ? branch then "refs/heads/${spec.branch}" else
if spec ? tag then "refs/tags/${spec.tag}" else
abort "In git source '${name}': Please specify `ref`, `tag` or `branch`!"
);
submodules = spec.submodules or false;
submoduleArg =
let
nixSupportsSubmodules = builtins.compareVersions builtins.nixVersion "2.4" >= 0;
emptyArgWithWarning =
if submodules
then
builtins.trace
(
"The niv input \"${name}\" uses submodules "
+ "but your nix's (${builtins.nixVersion}) builtins.fetchGit "
+ "does not support them"
)
{ }
else { };
in
if nixSupportsSubmodules
then { inherit submodules; }
else emptyArgWithWarning;
in
builtins.fetchGit
({ url = spec.repo; inherit (spec) rev; inherit ref; } // submoduleArg);
fetch_local = spec: spec.path; fetch_local = spec: spec.path;
@ -69,43 +40,33 @@ let
# Various helpers # Various helpers
# #
# https://github.com/NixOS/nixpkgs/pull/83241/files#diff-c6f540a4f3bfa4b0e8b6bafd4cd54e8bR695
sanitizeName = name:
(
concatMapStrings (s: if builtins.isList s then "-" else s)
(
builtins.split "[^[:alnum:]+._?=-]+"
((x: builtins.elemAt (builtins.match "\\.*(.*)" x) 0) name)
)
);
# The set of packages used when specs are fetched using non-builtins. # The set of packages used when specs are fetched using non-builtins.
mkPkgs = sources: system: mkPkgs = sources:
let let
sourcesNixpkgs = sourcesNixpkgs =
import (builtins_fetchTarball { inherit (sources.nixpkgs) url sha256; }) { inherit system; }; import (builtins_fetchTarball { inherit (sources.nixpkgs) url sha256; }) {};
hasNixpkgsPath = builtins.any (x: x.prefix == "nixpkgs") builtins.nixPath; hasNixpkgsPath = builtins.any (x: x.prefix == "nixpkgs") builtins.nixPath;
hasThisAsNixpkgsPath = <nixpkgs> == ./.; hasThisAsNixpkgsPath = <nixpkgs> == ./.;
in in
if builtins.hasAttr "nixpkgs" sources if builtins.hasAttr "nixpkgs" sources
then sourcesNixpkgs then sourcesNixpkgs
else if hasNixpkgsPath && ! hasThisAsNixpkgsPath then else if hasNixpkgsPath && ! hasThisAsNixpkgsPath then
import <nixpkgs> { } import <nixpkgs> {}
else else
abort abort
'' ''
Please specify either <nixpkgs> (through -I or NIX_PATH=nixpkgs=...) or Please specify either <nixpkgs> (through -I or NIX_PATH=nixpkgs=...) or
add a package called "nixpkgs" to your sources.json. add a package called "nixpkgs" to your sources.json.
''; '';
# The actual fetching function. # The actual fetching function.
fetch = pkgs: name: spec: fetch = pkgs: name: spec:
if ! builtins.hasAttr "type" spec then if ! builtins.hasAttr "type" spec then
abort "ERROR: niv spec ${name} does not have a 'type' attribute" abort "ERROR: niv spec ${name} does not have a 'type' attribute"
else if spec.type == "file" then fetch_file pkgs name spec else if spec.type == "file" then fetch_file pkgs spec
else if spec.type == "tarball" then fetch_tarball pkgs name spec else if spec.type == "tarball" then fetch_tarball pkgs name spec
else if spec.type == "git" then fetch_git name spec else if spec.type == "git" then fetch_git spec
else if spec.type == "local" then fetch_local spec else if spec.type == "local" then fetch_local spec
else if spec.type == "builtin-tarball" then fetch_builtin-tarball name else if spec.type == "builtin-tarball" then fetch_builtin-tarball name
else if spec.type == "builtin-url" then fetch_builtin-url name else if spec.type == "builtin-url" then fetch_builtin-url name
@ -116,13 +77,10 @@ let
# the path directly as opposed to the fetched source. # the path directly as opposed to the fetched source.
replace = name: drv: replace = name: drv:
let let
saneName = stringAsChars (c: if (builtins.match "[a-zA-Z0-9]" c) == null then "_" else c) name; saneName = stringAsChars (c: if isNull (builtins.match "[a-zA-Z0-9]" c) then "_" else c) name;
ersatz = builtins.getEnv "NIV_OVERRIDE_${saneName}"; ersatz = builtins.getEnv "NIV_OVERRIDE_${saneName}";
in in
if ersatz == "" then drv else if ersatz == "" then drv else ersatz;
# this turns the string into an actual Nix path (for both absolute and
# relative paths)
if builtins.substring 0 1 ersatz == "/" then /. + ersatz else /. + builtins.getEnv "PWD" + "/${ersatz}";
# Ports of functions for older nix versions # Ports of functions for older nix versions
@ -133,59 +91,51 @@ let
); );
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295 # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295
range = first: last: if first > last then [ ] else builtins.genList (n: first + n) (last - first + 1); range = first: last: if first > last then [] else builtins.genList (n: first + n) (last - first + 1);
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257 # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257
stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1)); stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1));
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269 # https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269
stringAsChars = f: s: concatStrings (map f (stringToCharacters s)); stringAsChars = f: s: concatStrings (map f (stringToCharacters s));
concatMapStrings = f: list: concatStrings (map f list);
concatStrings = builtins.concatStringsSep ""; concatStrings = builtins.concatStringsSep "";
# https://github.com/NixOS/nixpkgs/blob/8a9f58a375c401b96da862d969f66429def1d118/lib/attrsets.nix#L331
optionalAttrs = cond: as: if cond then as else { };
# fetchTarball version that is compatible between all the versions of Nix # fetchTarball version that is compatible between all the versions of Nix
builtins_fetchTarball = { url, name ? null, sha256 }@attrs: builtins_fetchTarball = { url, name, sha256 }@attrs:
let let
inherit (builtins) lessThan nixVersion fetchTarball; inherit (builtins) lessThan nixVersion fetchTarball;
in in
if lessThan nixVersion "1.12" then if lessThan nixVersion "1.12" then
fetchTarball ({ inherit url; } // (optionalAttrs (name != null) { inherit name; })) fetchTarball { inherit name url; }
else else
fetchTarball attrs; fetchTarball attrs;
# fetchurl version that is compatible between all the versions of Nix # fetchurl version that is compatible between all the versions of Nix
builtins_fetchurl = { url, name ? null, sha256 }@attrs: builtins_fetchurl = { url, sha256 }@attrs:
let let
inherit (builtins) lessThan nixVersion fetchurl; inherit (builtins) lessThan nixVersion fetchurl;
in in
if lessThan nixVersion "1.12" then if lessThan nixVersion "1.12" then
fetchurl ({ inherit url; } // (optionalAttrs (name != null) { inherit name; })) fetchurl { inherit url; }
else else
fetchurl attrs; fetchurl attrs;
# Create the final "sources" from the config # Create the final "sources" from the config
mkSources = config: mkSources = config:
mapAttrs mapAttrs (
( name: spec:
name: spec: if builtins.hasAttr "outPath" spec
if builtins.hasAttr "outPath" spec then abort
then "The values in sources.json should not have an 'outPath' attribute"
abort else
"The values in sources.json should not have an 'outPath' attribute" spec // { outPath = replace name (fetch config.pkgs name spec); }
else ) config.sources;
spec // { outPath = replace name (fetch config.pkgs name spec); }
)
config.sources;
# The "config" used by the fetchers # The "config" used by the fetchers
mkConfig = mkConfig =
{ sourcesFile ? if builtins.pathExists ./sources.json then ./sources.json else null { sourcesFile ? if builtins.pathExists ./sources.json then ./sources.json else null
, sources ? if sourcesFile == null then { } else builtins.fromJSON (builtins.readFile sourcesFile) , sources ? if isNull sourcesFile then {} else builtins.fromJSON (builtins.readFile sourcesFile)
, system ? builtins.currentSystem , pkgs ? mkPkgs sources
, pkgs ? mkPkgs sources system
}: rec { }: rec {
# The sources, i.e. the attribute set of spec name to spec # The sources, i.e. the attribute set of spec name to spec
inherit sources; inherit sources;
@ -195,4 +145,4 @@ let
}; };
in in
mkSources (mkConfig { }) // { __functor = _: settings: mkSources (mkConfig settings); } mkSources (mkConfig {}) // { __functor = _: settings: mkSources (mkConfig settings); }

View file

@ -24,10 +24,8 @@ pkgs.mkShell {
direnv direnv
ghc ghc
tmux tmux
libwebp
# for emacs dev # for emacs dev
ripgrep ripgrep
nodePackages.http-server nodePackages.http-server
lighttpd
]; ];
} }

View file

@ -5,7 +5,7 @@
<title>YBlog - About</title> <title>YBlog - About</title>
<link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="../../../css/y.css" /> <link rel="stylesheet" type="text/css" href="../../../Scratch/css/brutalist.css" />
<link rel="stylesheet" type="text/css" href="/css/legacy.css" /> <link rel="stylesheet" type="text/css" href="/css/legacy.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../pubkey.txt"> <link rel="pgpkey" href="../../../pubkey.txt">
@ -24,7 +24,7 @@
<div id="header"> <div id="header">
<div id="choix"> <div id="choix">
<div id="choixlang"> <div id="choixlang">
<a href="/about-me.html/">French</a> <a href="../../../Scratch/fr/about/">French</a>
</div> </div>
<div class="flush"></div> <div class="flush"></div>
</div> </div>
@ -35,7 +35,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../Scratch/en/softwares">Softwares</a> <a href="../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../Scratch/en/about">About</a>
</div> </div>
</div> </div>
@ -52,6 +52,12 @@
<a href="http://pinboard.in/u:yogsototh"><img src="../../../Scratch/img/pinboard.png" class="simple" style="height: 16px" /> yogsototh</a><br /> <a href="http://pinboard.in/u:yogsototh"><img src="../../../Scratch/img/pinboard.png" class="simple" style="height: 16px" /> yogsototh</a><br />
<a href="http://github.com/yogsototh"><img src="../../../Scratch/img/GitHub-Mark-32px.png" class="simple" style="height: 16px" /> yogsototh</a><br /> <a href="http://github.com/yogsototh"><img src="../../../Scratch/img/GitHub-Mark-32px.png" class="simple" style="height: 16px" /> yogsototh</a><br />
<a href="http://stackoverflow.com/users/40569/yogsototh"><img src="../../../Scratch/img/stackoverflow-logo.png" class="simple" style="height: 16px" /> yogsototh</a></p> <a href="http://stackoverflow.com/users/40569/yogsototh"><img src="../../../Scratch/img/stackoverflow-logo.png" class="simple" style="height: 16px" /> yogsototh</a></p>
<hr style="clear:both" />
<p><a href="https://cardanohub.org"><img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px; border-radius: 50%;" /> ADA:</a> <code style="display:inline-block; word-wrap:break-word; text-align: left; vertical-align: top; max-width: 85%;"> DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp </code></p>
<h2 id="one-photo">One photo</h2>
<figure>
<img src="../../../Scratch/img/about/yann1.jpg" alt="I look like this" /><figcaption>I look like this</figcaption>
</figure>
<h2 id="shortly">Shortly</h2> <h2 id="shortly">Shortly</h2>
<p>I am a Senior Software Engineer (Clojurist) for <a href="http://cisco.com">Cisco</a>, Threatgrid team.</p> <p>I am a Senior Software Engineer (Clojurist) for <a href="http://cisco.com">Cisco</a>, Threatgrid team.</p>
<p>I was a Machine Learning expert and Software Engineer for Vigiglobe.</p> <p>I was a Machine Learning expert and Software Engineer for Vigiglobe.</p>
@ -85,7 +91,7 @@
<li><a href="http://www.latex-project.org"><span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span></a>,</li> <li><a href="http://www.latex-project.org"><span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span></a>,</li>
<li><a href="http://www.tug.org/metapost.html">metapost</a>,</li> <li><a href="http://www.tug.org/metapost.html">metapost</a>,</li>
</ul> </ul>
<p><a href="/files/yann-esposito-resume.pdf">My full resume»</a></p> <p><a href="../../../Scratch/files/resume/resume.html">My full resume»</a></p>
<h2 id="old-stuff">Old stuff</h2> <h2 id="old-stuff">Old stuff</h2>
<ul> <ul>
<li><a href="http://ypassword.espozito.com">Official YPassword website ✞</a></li> <li><a href="http://ypassword.espozito.com">Official YPassword website ✞</a></li>
@ -97,7 +103,7 @@
<div id="afterarticle"> <div id="afterarticle">
<div id="bottom"> <div id="bottom">
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
Yann Esposito© Yann Esposito©
@ -110,7 +116,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -61,7 +61,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -69,7 +69,7 @@
Published on 2008-10-10 Published on 2008-10-10
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -83,7 +83,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -78,7 +78,7 @@ if (m/([^:]*)(:.*)('$1')(.*)/) {
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -86,7 +86,7 @@ if (m/([^:]*)(:.*)('$1')(.*)/) {
Published on 2009-07-22 Published on 2009-07-22
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -100,7 +100,23 @@ if (m/([^:]*)(:.*)('$1')(.*)/) {
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -141,7 +141,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -149,7 +149,7 @@
Published on 2009-08-04 Published on 2009-08-04
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -163,7 +163,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -70,7 +70,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -78,7 +78,7 @@
Published on 2009-08-15 Published on 2009-08-15
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -92,7 +92,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -74,7 +74,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -82,7 +82,7 @@
Published on 2009-08-17 Published on 2009-08-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -96,7 +96,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -165,7 +165,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -173,7 +173,7 @@
Published on 2009-08-18 Published on 2009-08-18
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -187,7 +187,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -65,7 +65,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -73,7 +73,7 @@
Published on 2009-09-06 Published on 2009-09-06
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -87,7 +87,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -112,7 +112,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -120,7 +120,7 @@
Published on 2009-09-07 Published on 2009-09-07
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -134,7 +134,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -67,7 +67,7 @@ Google Analytics <big><strong>&gt;</strong></big> Whos Amung Us
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -75,7 +75,7 @@ Google Analytics <big><strong>&gt;</strong></big> Whos Amung Us
Published on 2009-09-11 Published on 2009-09-11
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -89,7 +89,23 @@ Google Analytics <big><strong>&gt;</strong></big> Whos Amung Us
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -283,7 +283,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -291,7 +291,7 @@
Published on 2009-09-11 Published on 2009-09-11
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -305,7 +305,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -92,7 +92,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -100,7 +100,7 @@
Published on 2009-09-17 Published on 2009-09-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -114,7 +114,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -79,7 +79,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -87,7 +87,7 @@
Published on 2009-09-28 Published on 2009-09-28
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -101,7 +101,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -240,7 +240,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -248,7 +248,7 @@
Published on 2009-09-23 Published on 2009-09-23
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -262,7 +262,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -121,7 +121,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -129,7 +129,7 @@
Published on 2009-09-22 Published on 2009-09-22
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -143,7 +143,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -126,7 +126,7 @@ if [[ “$1” = “-s” ]]; then swap else if [[ “$1” = “-d” ]]; then
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -134,7 +134,7 @@ if [[ “$1” = “-s” ]]; then swap else if [[ “$1” = “-d” ]]; then
Published on 2009-10-28 Published on 2009-10-28
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -148,7 +148,23 @@ if [[ “$1” = “-s” ]]; then swap else if [[ “$1” = “-d” ]]; then
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -81,7 +81,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -89,7 +89,7 @@
Published on 2009-10-30 Published on 2009-10-30
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -103,7 +103,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -102,7 +102,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -110,7 +110,7 @@
Published on 2009-10-22 Published on 2009-10-22
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -124,7 +124,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -122,7 +122,7 @@ $(document).ready(function(){
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -130,7 +130,7 @@ $(document).ready(function(){
Published on 2009-10-03 Published on 2009-10-03
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -144,7 +144,23 @@ $(document).ready(function(){
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -122,7 +122,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -130,7 +130,7 @@
Published on 2009-10-26 Published on 2009-10-26
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -144,7 +144,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -62,7 +62,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -70,7 +70,7 @@
Published on 2009-10-23 Published on 2009-10-23
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -84,7 +84,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -181,7 +181,7 @@ OK
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -189,7 +189,7 @@ OK
Published on 2009-10-13 Published on 2009-10-13
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -203,7 +203,23 @@ OK
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -420,7 +420,7 @@ Zoot <span class="Constant"><strong>the not so pure</strong></span>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -428,7 +428,7 @@ Zoot <span class="Constant"><strong>the not so pure</strong></span>
Published on 2009-11-12 Published on 2009-11-12
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -442,7 +442,23 @@ Zoot <span class="Constant"><strong>the not so pure</strong></span>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -59,7 +59,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -67,7 +67,7 @@
Published on 2009-12-06 Published on 2009-12-06
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -81,7 +81,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -119,7 +119,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -127,7 +127,7 @@
Published on 2009-12-14 Published on 2009-12-14
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -141,7 +141,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -61,7 +61,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -69,7 +69,7 @@
Published on 2010-01-04 Published on 2010-01-04
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -83,7 +83,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -116,7 +116,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -124,7 +124,7 @@
Published on 2010-01-12 Published on 2010-01-12
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -138,7 +138,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -88,7 +88,7 @@ Notice this method is not always the best. For example try to write a regular ex
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -96,7 +96,7 @@ Notice this method is not always the best. For example try to write a regular ex
Published on 2010-02-15 Published on 2010-02-15
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -110,7 +110,23 @@ Notice this method is not always the best. For example try to write a regular ex
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -113,7 +113,7 @@ a.....<strong class="blue">a......b</strong>..b..a....<strong class="blue">a....
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -121,7 +121,7 @@ a.....<strong class="blue">a......b</strong>..b..a....<strong class="blue">a....
Published on 2010-02-16 Published on 2010-02-16
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -135,7 +135,23 @@ a.....<strong class="blue">a......b</strong>..b..a....<strong class="blue">a....
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -69,7 +69,7 @@ Mon Dec 7 10:32:30 UTC 2009
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -77,7 +77,7 @@ Mon Dec 7 10:32:30 UTC 2009
Published on 2010-02-18 Published on 2010-02-18
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -91,7 +91,23 @@ Mon Dec 7 10:32:30 UTC 2009
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -94,7 +94,7 @@ chomp: 0.820000 0.040000 0.860000 ( 0.947432)
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -102,7 +102,7 @@ chomp: 0.820000 0.040000 0.860000 ( 0.947432)
Published on 2010-02-23 Published on 2010-02-23
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -116,7 +116,23 @@ chomp: 0.820000 0.040000 0.860000 ( 0.947432)
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -82,7 +82,7 @@ $ zsh $ cd project $ for br in $( git br -a ); do case $br in remotes/<em>) prin
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -90,7 +90,7 @@ $ zsh $ cd project $ for br in $( git br -a ); do case $br in remotes/<em>) prin
Published on 2010-03-22 Published on 2010-03-22
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -104,7 +104,23 @@ $ zsh $ cd project $ for br in $( git br -a ); do case $br in remotes/<em>) prin
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -110,7 +110,7 @@ case ARGV[0] when allmerges then do_all_merges when merge then do_me
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -118,7 +118,7 @@ case ARGV[0] when allmerges then do_all_merges when merge then do_me
Published on 2010-03-23 Published on 2010-03-23
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -132,7 +132,23 @@ case ARGV[0] when allmerges then do_all_merges when merge then do_me
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -79,7 +79,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -87,7 +87,7 @@
Published on 2010-05-17 Published on 2010-05-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -101,7 +101,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -124,7 +124,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -132,7 +132,7 @@
Published on 2010-05-19 Published on 2010-05-19
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -146,7 +146,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -134,9 +134,9 @@ Lets begin to write code</p>
<h2 id="think">Think</h2> <h2 id="think">Think</h2>
<p>After some times, I just stopped to work. Tell myself <em>“it is enough, now, I must finish it!”</em>. I took a sheet of paper, a pen and began to draw some trees.</p> <p>After some times, I just stopped to work. Tell myself <em>“it is enough, now, I must finish it!”</em>. I took a sheet of paper, a pen and began to draw some trees.</p>
<p>I began by make by removing most of the verbosity. I first renamed <code>&lt;item name="Menu"&gt;</code> by simpler name <code>M</code> for example. I obtained something like:</p> <p>I began by make by removing most of the verbosity. I first renamed <code>&lt;item name="Menu"&gt;</code> by simpler name <code>M</code> for example. I obtained something like:</p>
<img src="code/The_source_tree.png" alt="The source tree" /> <p><img src="code/The_source_tree.png" alt="The source tree" /></p>
<p>and</p> <p>and</p>
<img src="code/The_destination_tree.png" alt="The destination tree" /> <p><img src="code/The_destination_tree.png" alt="The destination tree" /></p>
<p>Then I made myself the following reflexion:</p> <p>Then I made myself the following reflexion:</p>
<p>Considering Tree Edit Distance, each unitary transformation of tree correspond to a simple search and replace on my <sc>xml</sc> source<a href="#fn2" class="footnote-ref" id="fnref2"><sup>2</sup></a>. We consider three atomic transformations on trees:</p> <p>Considering Tree Edit Distance, each unitary transformation of tree correspond to a simple search and replace on my <sc>xml</sc> source<a href="#fn2" class="footnote-ref" id="fnref2"><sup>2</sup></a>. We consider three atomic transformations on trees:</p>
<ul> <ul>
@ -247,7 +247,7 @@ R -&gt; V</p>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -255,7 +255,7 @@ R -&gt; V</p>
Published on 2010-05-24 Published on 2010-05-24
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -269,7 +269,23 @@ R -&gt; V</p>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -83,7 +83,7 @@ here is an example of english text.
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -91,7 +91,7 @@ here is an example of english text.
Published on 2010-06-14 Published on 2010-06-14
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -105,7 +105,23 @@ here is an example of english text.
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -118,7 +118,7 @@ multi/blog/2010-06-01-the-title/third_part.md
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -126,7 +126,7 @@ multi/blog/2010-06-01-the-title/third_part.md
Published on 2010-06-15 Published on 2010-06-15
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -140,7 +140,23 @@ multi/blog/2010-06-01-the-title/third_part.md
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -109,7 +109,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -117,7 +117,7 @@
Published on 2010-06-17 Published on 2010-06-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -131,7 +131,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -114,7 +114,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -122,7 +122,7 @@
Published on 2010-06-17 Published on 2010-06-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -136,7 +136,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -83,7 +83,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -91,7 +91,7 @@
Published on 2010-06-19 Published on 2010-06-19
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -105,7 +105,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -142,7 +142,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -150,7 +150,7 @@
Published on 2010-07-05 Published on 2010-07-05
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -164,7 +164,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -72,7 +72,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -80,7 +80,7 @@
Published on 2010-07-07 Published on 2010-07-07
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -94,7 +94,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -153,7 +153,7 @@ Q(x) :
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -161,7 +161,7 @@ Q(x) :
Published on 2010-08-11 Published on 2010-08-11
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -175,7 +175,23 @@ Q(x) :
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -59,7 +59,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -67,7 +67,7 @@
Published on 2010-07-31 Published on 2010-07-31
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -81,7 +81,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -120,7 +120,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -128,7 +128,7 @@
Published on 2010-08-23 Published on 2010-08-23
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -142,7 +142,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -94,7 +94,7 @@ H4sICB6Ke0wAA2Rjcl93aXRob3V0X2tleXdvcmQuY3N2ANSdW5ubOJPH7/e7
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -102,7 +102,7 @@ H4sICB6Ke0wAA2Rjcl93aXRob3V0X2tleXdvcmQuY3N2ANSdW5ubOJPH7/e7
Published on 2010-08-31 Published on 2010-08-31
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -116,7 +116,23 @@ H4sICB6Ke0wAA2Rjcl93aXRob3V0X2tleXdvcmQuY3N2ANSdW5ubOJPH7/e7
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -75,7 +75,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -83,7 +83,7 @@
Published on 2010-09-02 Published on 2010-09-02
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -97,7 +97,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -107,7 +107,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -115,7 +115,7 @@
Published on 2010-09-02 Published on 2010-09-02
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -129,7 +129,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -64,7 +64,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -72,7 +72,7 @@
Published on 2010-10-06 Published on 2010-10-06
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -86,7 +86,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -86,7 +86,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -94,7 +94,7 @@
Published on 2010-10-10 Published on 2010-10-10
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -108,7 +108,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -303,7 +303,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -311,7 +311,7 @@
Published on 2010-10-14 Published on 2010-10-14
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -325,7 +325,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -112,7 +112,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -120,7 +120,7 @@
Published on 2010-10-26 Published on 2010-10-26
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -134,7 +134,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -61,7 +61,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -69,7 +69,7 @@
Published on 2011-01-01 Published on 2011-01-01
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -83,7 +83,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -131,7 +131,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -139,7 +139,7 @@
Published on 2011-01-03 Published on 2011-01-03
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -153,7 +153,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -60,7 +60,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -68,7 +68,7 @@
Published on 2011-04-20 Published on 2011-04-20
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -82,7 +82,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -82,7 +82,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -90,7 +90,7 @@
Published on 2011-08-17 Published on 2011-08-17
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -104,7 +104,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -39,12 +39,12 @@
<div class="flush"></div> <div class="flush"></div>
<div id="afterheader" class="article"> <div id="afterheader" class="article">
<div class="corps"> <div class="corps">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-hask-endofunctor.png" alt="Cateogry of Hask's endofunctors" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-hask-endofunctor.png" alt="Cateogry of Hask's endofunctors" />
<p>Yesterday I was happy to make a presentation about Category Theory at <a href="http://www.meetup.com/riviera-scala-clojure">Riviera Scala Clojure Meetup</a> (note I used only Haskell for my examples).</p> <p>Yesterday I was happy to make a presentation about Category Theory at <a href="http://www.meetup.com/riviera-scala-clojure">Riviera Scala Clojure Meetup</a> (note I used only Haskell for my examples).</p>
<ul><li><a href="http://yogsototh.github.io/Category-Theory-Presentation/categories.html">Click here to go to the HTML presentation.</a> <ul><li><a href="http://yogsototh.github.com/Category-Theory-Presentation/categories.html">Click here to go to the HTML presentation.</a>
</li><li><a href="http://yogsototh.github.io/Category-Theory-Presentation/categories.pdf">Click Here to download the PDF slides (<span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span> not rendered properly)</a> </li><li><a href="http://yogsototh.github.com/Category-Theory-Presentation/categories.pdf">Click Here to download the PDF slides (<span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span> not rendered properly)</a>
</li></ul> </li></ul>
<p>If you don't want to read them through an HTML presentations framework or downloading a big PDF <p>If you don't want to read them through an HTML presentations framework or downloading a big PDF
@ -94,14 +94,14 @@ just continue to read as a standard web page.
<section class="slide"> <section class="slide">
<h2 id="not-really-about-cat-glory">Not really about: Cat <span class="and">&amp;</span> glory</h2> <h2 id="not-really-about-cat-glory">Not really about: Cat <span class="and">&amp;</span> glory</h2>
<figure> <figure>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/categlory.jpg" alt="Cat n glory" /> <figcaption>credit to Tokuhiro Kawai (川井徳寛)</figcaption> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/categlory.jpg" alt="Cat n glory" /> <figcaption>credit to Tokuhiro Kawai (川井徳寛)</figcaption>
</figure> </figure>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="general-overview">General Overview</h2> <h2 id="general-overview">General Overview</h2>
<div style="float:right; width: 18%"> <div style="float:right; width: 18%">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/eilenberg.gif" alt="Samuel Eilenberg" /> <img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/maclaine.jpg" alt="Saunders Mac Lane" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/eilenberg.gif" alt="Samuel Eilenberg" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/maclaine.jpg" alt="Saunders Mac Lane" />
</div> </div>
<p><em>Recent Math Field</em><br />1942-45, Samuel Eilenberg <span class="and">&amp;</span> Saunders Mac Lane</p> <p><em>Recent Math Field</em><br />1942-45, Samuel Eilenberg <span class="and">&amp;</span> Saunders Mac Lane</p>
@ -127,7 +127,7 @@ just continue to read as a standard web page.
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="math-programming-relation">Math Programming relation</h2> <h2 id="math-programming-relation">Math Programming relation</h2>
<img class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/buddha.gif" alt="Buddha Fractal" /> <img class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/buddha.gif" alt="Buddha Fractal" />
<p>Programming <em><span class="orange">is</span></em> doing Math</p> <p>Programming <em><span class="orange">is</span></em> doing Math</p>
<p>Strong relations between type theory and category theory.</p> <p>Strong relations between type theory and category theory.</p>
<p>Not convinced?<br />Certainly a <em>vocabulary</em> problem.</p> <p>Not convinced?<br />Certainly a <em>vocabulary</em> problem.</p>
@ -135,7 +135,7 @@ just continue to read as a standard web page.
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="vocabulary">Vocabulary</h2> <h2 id="vocabulary">Vocabulary</h2>
<img class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mindblown.gif" alt="mind blown" /> <img class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mindblown.gif" alt="mind blown" />
<p>Math vocabulary used in this presentation:</p> <p>Math vocabulary used in this presentation:</p>
<blockquote style="width:55%"> <blockquote style="width:55%">
<p>Category, Morphism, Associativity, Preorder, Functor, Endofunctor, Categorial property, Commutative diagram, Isomorph, Initial, Dual, Monoid, Natural transformation, Monad, Klesli arrows, κατα-morphism, ...</p> <p>Category, Morphism, Associativity, Preorder, Functor, Endofunctor, Categorial property, Commutative diagram, Isomorph, Initial, Dual, Monoid, Natural transformation, Monad, Klesli arrows, κατα-morphism, ...</p>
@ -143,7 +143,7 @@ just continue to read as a standard web page.
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="programmer-translation">Programmer Translation</h2> <h2 id="programmer-translation">Programmer Translation</h2>
<img class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/readingcat.jpg" alt="lolcat" /> <img class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/readingcat.jpg" alt="lolcat" />
<table style="width:50%"> <table style="width:50%">
<tr><th> <tr><th>
Mathematician Mathematician
@ -215,14 +215,14 @@ LOLCat
<section class="slide"> <section class="slide">
<h2>Category: Objects</h2> <h2>Category: Objects</h2>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/objects.png" alt="objects" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/objects.png" alt="objects" />
<p>\(\ob{\mathcal{C}}\) is a collection</p> <p>\(\ob{\mathcal{C}}\) is a collection</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Category: Morphisms</h2> <h2>Category: Morphisms</h2>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/morphisms.png" alt="morphisms" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/morphisms.png" alt="morphisms" />
<p>\(A\) and \(B\) objects of \(\C\)<br /> <p>\(A\) and \(B\) objects of \(\C\)<br />
\(\hom{A,B}\) is a collection of morphisms<br /> \(\hom{A,B}\) is a collection of morphisms<br />
@ -234,31 +234,31 @@ LOLCat
<p>Composition (∘): associate to each couple \(f:A→B, g:B→C\) <p>Composition (∘): associate to each couple \(f:A→B, g:B→C\)
$$g∘f:A\rightarrow C$$ $$g∘f:A\rightarrow C$$
</p> </p>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/composition.png" alt="composition" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/composition.png" alt="composition" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Category laws: neutral element</h2> <h2>Category laws: neutral element</h2>
<p>for each object \(X\), there is an \(\id_X:X→X\),<br /> <p>for each object \(X\), there is an \(\id_X:X→X\),<br />
such that for each \(f:A→B\):</p> such that for each \(f:A→B\):</p>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/identity.png" alt="identity" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/identity.png" alt="identity" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Category laws: Associativity</h2> <h2>Category laws: Associativity</h2>
<p> Composition is associative:</p> <p> Composition is associative:</p>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/associativecomposition.png" alt="associative composition" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/associativecomposition.png" alt="associative composition" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Commutative diagrams</h2> <h2>Commutative diagrams</h2>
<p>Two path with the same source and destination are equal.</p> <p>Two path with the same source and destination are equal.</p>
<figure class="left" style="max-width: 40%;margin-left: 5%;"> <figure class="left" style="max-width: 40%;margin-left: 5%;">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/commutative-diagram-assoc.png" alt="Commutative Diagram (Associativity)" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/commutative-diagram-assoc.png" alt="Commutative Diagram (Associativity)" />
<figcaption> <figcaption>
\((h∘g)∘f = h∘(g∘f) \) \((h∘g)∘f = h∘(g∘f) \)
</figcaption> </figcaption>
</figure> </figure>
<figure class="right" style="max-width:31%;margin-right: 10%;"> <figure class="right" style="max-width:31%;margin-right: 10%;">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/commutative-diagram-id.png" alt="Commutative Diagram (Identity law)" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/commutative-diagram-id.png" alt="Commutative Diagram (Identity law)" />
<figcaption> <figcaption>
\(id_B∘f = f = f∘id_A \) \(id_B∘f = f = f∘id_A \)
</figcaption> </figcaption>
@ -268,7 +268,7 @@ such that for each \(f:A→B\):</p>
<h2>Question Time!</h2> <h2>Question Time!</h2>
<figure style="width:70%; margin:0 auto"> <figure style="width:70%; margin:0 auto">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/batquestion.jpg" width="100%" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/batquestion.jpg" width="100%" />
<figcaption> <figcaption>
<em>- French-only joke -</em> <em>- French-only joke -</em>
</figcaption> </figcaption>
@ -278,20 +278,20 @@ such that for each \(f:A→B\):</p>
<h2>Can this be a category?</h2> <h2>Can this be a category?</h2>
<p>\(\ob{\C},\hom{\C}\) fixed, is there a valid ∘?</p> <p>\(\ob{\C},\hom{\C}\) fixed, is there a valid ∘?</p>
<figure class="left"> <figure class="left">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-example1.png" alt="Category example 1" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-example1.png" alt="Category example 1" />
<figcaption class="slide"> <figcaption class="slide">
<span class="green">YES</span> <span class="green">YES</span>
</figcaption> </figcaption>
</figure> </figure>
<figure class="left"> <figure class="left">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-example2.png" alt="Category example 2" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-example2.png" alt="Category example 2" />
<figcaption class="slide"> <figcaption class="slide">
no candidate for \(g∘f\) no candidate for \(g∘f\)
<br /><span class="red">NO</span> <br /><span class="red">NO</span>
</figcaption> </figcaption>
</figure> </figure>
<figure class="left"> <figure class="left">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-example3.png" alt="Category example 3" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-example3.png" alt="Category example 3" />
<figcaption class="slide"> <figcaption class="slide">
<span class="green">YES</span> <span class="green">YES</span>
</figcaption> </figcaption>
@ -300,14 +300,14 @@ such that for each \(f:A→B\):</p>
<section class="slide"> <section class="slide">
<h2>Can this be a category?</h2> <h2>Can this be a category?</h2>
<figure class="left"> <figure class="left">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-example4.png" alt="Category example 4" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-example4.png" alt="Category example 4" />
<figcaption class="slide"> <figcaption class="slide">
no candidate for \(f:C→B\) no candidate for \(f:C→B\)
<br /><span class="red">NO</span> <br /><span class="red">NO</span>
</figcaption> </figcaption>
</figure> </figure>
<figure class="right" style="min-width: 50%"> <figure class="right" style="min-width: 50%">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-example5.png" alt="Category example 5" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-example5.png" alt="Category example 5" />
<figcaption class="slide"> <figcaption class="slide">
\((h∘g)∘f=\id_B∘f=f\)<br /> \((h∘g)∘f=\id_B∘f=f\)<br />
\(h∘(g∘f)=h∘\id_A=h\)<br /> \(h∘(g∘f)=h∘\id_A=h\)<br />
@ -320,7 +320,7 @@ such that for each \(f:A→B\):</p>
<h2>Categories Examples</h2> <h2>Categories Examples</h2>
<figure style="width:70%; margin:0 auto"> <figure style="width:70%; margin:0 auto">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/basket_of_cats.jpg" alt="Basket of cats" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/basket_of_cats.jpg" alt="Basket of cats" />
<figcaption> <figcaption>
<em>- Basket of Cats -</em> <em>- Basket of Cats -</em>
</figcaption> </figcaption>
@ -343,7 +343,7 @@ such that for each \(f:A→B\):</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Categories Everywhere?</h2> <h2>Categories Everywhere?</h2>
<img class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/cats-everywhere.jpg" alt="Cats everywhere" /> <img class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/cats-everywhere.jpg" alt="Cats everywhere" />
<ul> <ul>
<li>\(\Mon\): (monoids, monoid morphisms,∘)</li> <li>\(\Mon\): (monoids, monoid morphisms,∘)</li>
<li>\(\Vec\): (Vectorial spaces, linear functions,∘)</li> <li>\(\Vec\): (Vectorial spaces, linear functions,∘)</li>
@ -358,7 +358,7 @@ such that for each \(f:A→B\):</p>
<h2>Smaller Examples</h2> <h2>Smaller Examples</h2>
<h3>Strings</h3> <h3>Strings</h3>
<img class="right" style="max-width:17%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/strings.png" alt="Monoids are one object categories" /> <img class="right" style="max-width:17%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/strings.png" alt="Monoids are one object categories" />
<ul> <ul>
<li> \(\ob{Str}\) is a singleton </li> <li> \(\ob{Str}\) is a singleton </li>
<li> \(\hom{Str}\) each string </li> <li> \(\hom{Str}\) each string </li>
@ -374,7 +374,7 @@ such that for each \(f:A→B\):</p>
<h3>Graph</h3> <h3>Graph</h3>
<figure class="right" style="max-width:40%"> <figure class="right" style="max-width:40%">
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/graph-category.png" alt="Each graph is a category" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/graph-category.png" alt="Each graph is a category" />
</figure> </figure>
<ul> <ul>
<li> \(\ob{G}\) are vertices</li> <li> \(\ob{G}\) are vertices</li>
@ -390,12 +390,12 @@ such that for each \(f:A→B\):</p>
<h2>Number construction</h2> <h2>Number construction</h2>
<h3>Each Numbers as a whole category</h3> <h3>Each Numbers as a whole category</h3>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/numbers.png" alt="Each number as a category" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/numbers.png" alt="Each number as a category" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Degenerated Categories: Monoids</h2> <h2>Degenerated Categories: Monoids</h2>
<img class="right" style="max-width:17%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/monoid.png" alt="Monoids are one object categories" /> <img class="right" style="max-width:17%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/monoid.png" alt="Monoids are one object categories" />
<p>Each Monoid \((M,e,⊙): \ob{M}=\{∙\},\hom{M}=M,\circ = ⊙\)</p> <p>Each Monoid \((M,e,⊙): \ob{M}=\{∙\},\hom{M}=M,\circ = ⊙\)</p>
<p class="orange">Only one object.</p> <p class="orange">Only one object.</p>
<p>Examples:</p> <p>Examples:</p>
@ -413,12 +413,12 @@ such that for each \(f:A→B\):</p>
<p><em class="orange">At most one morphism between two objects.</em></p> <p><em class="orange">At most one morphism between two objects.</em></p>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/preorder.png" alt="preorder category" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/preorder.png" alt="preorder category" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Degenerated Categories: Discrete Categories</h2> <h2>Degenerated Categories: Discrete Categories</h2>
<img class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/set.png" alt="Any set can be a category" /> <img class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/set.png" alt="Any set can be a category" />
<h3>Any Set</h3> <h3>Any Set</h3>
<p>Any set \(E: \ob{E}=E, \hom{x,y}=\{x\} ⇔ x=y \)</p> <p>Any set \(E: \ob{E}=E, \hom{x,y}=\{x\} ⇔ x=y \)</p>
<p class="orange">Only identities</p> <p class="orange">Only identities</p>
@ -444,7 +444,7 @@ such that for each \(f:A→B\):</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="isomorph">Isomorph</h2> <h2 id="isomorph">Isomorph</h2>
<p><img class="right" alt="isomorph cats" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/isomorph-cats.jpg" /> <em class="orange">isomorphism</em>: \(f:A→B\) which can be &quot;undone&quot; <em>i.e.</em><br />\(∃g:B→A\), \(g∘f=id_A\) <span class="and">&amp;</span> \(f∘g=id_B\)<br />in this case, \(A\) <span class="and">&amp;</span> \(B\) are <em class="orange">isomorphic</em>.</p> <p><img class="right" alt="isomorph cats" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/isomorph-cats.jpg" /> <em class="orange">isomorphism</em>: \(f:A→B\) which can be &quot;undone&quot; <em>i.e.</em><br />\(∃g:B→A\), \(g∘f=id_A\) <span class="and">&amp;</span> \(f∘g=id_B\)<br />in this case, \(A\) <span class="and">&amp;</span> \(B\) are <em class="orange">isomorphic</em>.</p>
<p><span class="orange">A≌B</span> means A and B are essentially the same.<br />In Category Theory, <span class="orange">=</span> is in fact mostly <span class="orange"></span>.<br />For example in commutative diagrams.</p> <p><span class="orange">A≌B</span> means A and B are essentially the same.<br />In Category Theory, <span class="orange">=</span> is in fact mostly <span class="orange"></span>.<br />For example in commutative diagrams.</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
@ -467,28 +467,28 @@ A <em>functor</em> <span class="orange">\(\F\)</span> from <span class="blue">\(
<section class="slide"> <section class="slide">
<h2>Functor Example (ob → ob)</h2> <h2>Functor Example (ob → ob)</h2>
<img width="65%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/functor.png" alt="Functor" /> <img width="65%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/functor.png" alt="Functor" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Functor Example (hom → hom)</h2> <h2>Functor Example (hom → hom)</h2>
<img width="65%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/functor-morphism.png" alt="Functor" /> <img width="65%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/functor-morphism.png" alt="Functor" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Functor Example</h2> <h2>Functor Example</h2>
<img width="65%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/functor-morphism-color.png" alt="Functor" /> <img width="65%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/functor-morphism-color.png" alt="Functor" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Endofunctors</h2> <h2>Endofunctors</h2>
<p>An <em>endofunctor</em> for \(\C\) is a functor \(F:\C→\C\).</p> <p>An <em>endofunctor</em> for \(\C\) is a functor \(F:\C→\C\).</p>
<img width="75%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/endofunctor.png" alt="Endofunctor" /> <img width="75%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/endofunctor.png" alt="Endofunctor" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Category of Categories</h2> <h2>Category of Categories</h2>
<img style="min-width:43%; width: 43%" class="right" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/fractalcat.jpg" /> <img style="min-width:43%; width: 43%" class="right" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/fractalcat.jpg" />
<p>Categories and functors form a category: \(\Cat\)</p> <p>Categories and functors form a category: \(\Cat\)</p>
<ul><li>\(\ob{\Cat}\) are categories <ul><li>\(\ob{\Cat}\) are categories
@ -517,7 +517,7 @@ A <em>functor</em> <span class="orange">\(\F\)</span> from <span class="blue">\(
<p>Category \(\Hask\):</p> <p>Category \(\Hask\):</p>
<img class="right" style="max-width:30%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/hask.png" alt="Haskell Category Representation" /> <img class="right" style="max-width:30%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/hask.png" alt="Haskell Category Representation" />
<ul><li> <ul><li>
\(\ob{\Hask} = \) Haskell types \(\ob{\Hask} = \) Haskell types
@ -607,7 +607,7 @@ fmap head [[1,2,3],[4,5,6]] == [1,4]</code></pre>
<p>Put normal function inside a container. Ex: list, trees...<p> <p>Put normal function inside a container. Ex: list, trees...<p>
<img width="70%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/boxfunctor.png" alt="Haskell Functor as a box play" /> <img width="70%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/boxfunctor.png" alt="Haskell Functor as a box play" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Haskell Functor properties</h2> <h2>Haskell Functor properties</h2>
@ -624,7 +624,7 @@ fmap head [[1,2,3],[4,5,6]] == [1,4]</code></pre>
<p>Haskell functor can be seen as boxes containing all Haskell types and functions. <p>Haskell functor can be seen as boxes containing all Haskell types and functions.
Haskell types look like a fractal:</p> Haskell types look like a fractal:</p>
<img width="70%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/hask-endofunctor.png" alt="Haskell functor representation" /> <img width="70%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/hask-endofunctor.png" alt="Haskell functor representation" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Functor as boxes</h2> <h2>Functor as boxes</h2>
@ -632,7 +632,7 @@ Haskell types look like a fractal:</p>
<p>Haskell functor can be seen as boxes containing all Haskell types and functions. <p>Haskell functor can be seen as boxes containing all Haskell types and functions.
Haskell types look like a fractal:</p> Haskell types look like a fractal:</p>
<img width="70%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/hask-endofunctor-objects.png" alt="Haskell functor representation" /> <img width="70%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/hask-endofunctor-objects.png" alt="Haskell functor representation" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2>Functor as boxes</h2> <h2>Functor as boxes</h2>
@ -640,7 +640,7 @@ Haskell types look like a fractal:</p>
<p>Haskell functor can be seen as boxes containing all Haskell types and functions. <p>Haskell functor can be seen as boxes containing all Haskell types and functions.
Haskell types look like a fractal:</p> Haskell types look like a fractal:</p>
<img width="70%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/hask-endofunctor-morphisms.png" alt="Haskell functor representation" /> <img width="70%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/hask-endofunctor-morphisms.png" alt="Haskell functor representation" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="non-haskell-hasks-functors">&quot;Non Haskell&quot; Hask's Functors</h2> <h2 id="non-haskell-hasks-functors">&quot;Non Haskell&quot; Hask's Functors</h2>
@ -677,7 +677,7 @@ Haskell types look like a fractal:</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="category-of-hask-endofunctors">Category of \(\Hask\) Endofunctors</h2> <h2 id="category-of-hask-endofunctors">Category of \(\Hask\) Endofunctors</h2>
<img width="50%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/cat-hask-endofunctor.png" alt="Category of Hask endofunctors" /> <img width="50%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/cat-hask-endofunctor.png" alt="Category of Hask endofunctors" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="category-of-functors">Category of Functors</h2> <h2 id="category-of-functors">Category of Functors</h2>
@ -692,7 +692,7 @@ Haskell types look like a fractal:</p>
<section class="slide"> <section class="slide">
<h2 id="natural-transformations">Natural Transformations</h2> <h2 id="natural-transformations">Natural Transformations</h2>
<p>Let \(F\) and \(G\) be two functors from \(\C\) to \(\D\).</p> <p>Let \(F\) and \(G\) be two functors from \(\C\) to \(\D\).</p>
<p><img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/natural-transformation.png" alt="Natural transformation commutative diagram" class="right" /> <em>A natural transformation:</em> familly η ; \(η_X\in\hom{\D}\) for \(X\in\ob{\C}\) s.t.</p> <p><img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/natural-transformation.png" alt="Natural transformation commutative diagram" class="right" /> <em>A natural transformation:</em> familly η ; \(η_X\in\hom{\D}\) for \(X\in\ob{\C}\) s.t.</p>
<p>ex: between Haskell functors; <code>F a -&gt; G a</code><br />Rearragement functions only.</p> <p>ex: between Haskell functors; <code>F a -&gt; G a</code><br />Rearragement functions only.</p>
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
@ -702,9 +702,9 @@ toList :: [a] -> List a
toList [] = Nil toList [] = Nil
toList (x:xs) = Cons x (toList xs)</code></pre> toList (x:xs) = Cons x (toList xs)</code></pre>
<p><code>toList</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>List</code> in the Category of \(\Hask\) endofunctors.</p> <p><code>toList</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>List</code> in the Category of \(\Hask\) endofunctors.</p>
<img style="float:left;width:30%;margin-left: 1em;" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/nattrans-list-tree.png" alt="natural transformation commutative diagram" /> <img style="float:left;width:30%;margin-left: 1em;" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/nattrans-list-tree.png" alt="natural transformation commutative diagram" />
<figure style="float:right;width:50%"> <figure style="float:right;width:50%">
<img style="width:40%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/list-tree-endofunctor-morphism.png" alt="natural transformation commutative diagram" /> <img style="width:40%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/list-tree-endofunctor-morphism.png" alt="natural transformation commutative diagram" />
</figure> </figure>
<div class="flush"></div></section> <div class="flush"></div></section>
@ -715,9 +715,9 @@ toHList :: List a -> [a]
toHList Nil = [] toHList Nil = []
toHList (Cons x xs) = x:toHList xs</code></pre> toHList (Cons x xs) = x:toHList xs</code></pre>
<p><code>toHList</code> is a natural transformation. It is also a morphism from <code>List</code> to <code>[]</code> in the Category of \(\Hask\) endofunctors.</p> <p><code>toHList</code> is a natural transformation. It is also a morphism from <code>List</code> to <code>[]</code> in the Category of \(\Hask\) endofunctors.</p>
<img style="float:left;width:30%;margin-left:1em" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/nattrans-tree-list.png" alt="natural transformation commutative diagram" /> <img style="float:left;width:30%;margin-left:1em" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/nattrans-tree-list.png" alt="natural transformation commutative diagram" />
<figure style="float:right;width:50%"> <figure style="float:right;width:50%">
<img style="width:40%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/tree-list-endofunctor-morphism.png" alt="natural transformation commutative diagram" /> <figcaption><code>toList . toHList = id</code> <span class="and">&amp;</span> <code>toHList . toList = id</code> <span style="visibility:hidden"><span class="and">&amp;</span></span><br /> therefore <code>[]</code> <span class="and">&amp;</span> <code>List</code> are <span class="orange">isomorph</span>. </figcaption> <img style="width:40%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/tree-list-endofunctor-morphism.png" alt="natural transformation commutative diagram" /> <figcaption><code>toList . toHList = id</code> <span class="and">&amp;</span> <code>toHList . toList = id</code> <span style="visibility:hidden"><span class="and">&amp;</span></span><br /> therefore <code>[]</code> <span class="and">&amp;</span> <code>List</code> are <span class="orange">isomorph</span>. </figcaption>
</figure> </figure>
<div class="flush"></div></section> <div class="flush"></div></section>
@ -727,9 +727,9 @@ toHList (Cons x xs) = x:toHList xs</code></pre>
toMaybe [] = Nothing toMaybe [] = Nothing
toMaybe (x:xs) = Just x</code></pre> toMaybe (x:xs) = Just x</code></pre>
<p><code>toMaybe</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>Maybe</code> in the Category of \(\Hask\) endofunctors.</p> <p><code>toMaybe</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>Maybe</code> in the Category of \(\Hask\) endofunctors.</p>
<img style="float:left;width:30%;margin-left:1em;" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/nattrans-list-maybe.png" alt="natural transformation commutative diagram" /> <img style="float:left;width:30%;margin-left:1em;" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/nattrans-list-maybe.png" alt="natural transformation commutative diagram" />
<figure style="float:right;width:50%"> <figure style="float:right;width:50%">
<img style="width:40%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/list-maybe-endofunctor-morphism.png" alt="natural transformation commutative diagram" /> <img style="width:40%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/list-maybe-endofunctor-morphism.png" alt="natural transformation commutative diagram" />
</figure> </figure>
<div class="flush"></div></section> <div class="flush"></div></section>
@ -739,9 +739,9 @@ toMaybe (x:xs) = Just x</code></pre>
mToList Nothing = [] mToList Nothing = []
mToList Just x = [x]</code></pre> mToList Just x = [x]</code></pre>
<p><code>toMaybe</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>Maybe</code> in the Category of \(\Hask\) endofunctors.</p> <p><code>toMaybe</code> is a natural transformation. It is also a morphism from <code>[]</code> to <code>Maybe</code> in the Category of \(\Hask\) endofunctors.</p>
<img style="float:left;width:30%;margin-left:1em;" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/nattrans-maybe-list.png" alt="natural transformation commutative diagram" /> <img style="float:left;width:30%;margin-left:1em;" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/nattrans-maybe-list.png" alt="natural transformation commutative diagram" />
<figure style="float:right;width:50%"> <figure style="float:right;width:50%">
<img style="width:40%" src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/mp/maybe-list-endofunctor-morphsm.png" alt="relation between [] and Maybe" /> <figcaption>There is <span class="red">no isomorphism</span>.<br /> Hint: <code>Bool</code> lists longer than 1. </figcaption> <img style="width:40%" src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/mp/maybe-list-endofunctor-morphsm.png" alt="relation between [] and Maybe" /> <figcaption>There is <span class="red">no isomorphism</span>.<br /> Hint: <code>Bool</code> lists longer than 1. </figcaption>
</figure> </figure>
<div class="flush"></div></section> <div class="flush"></div></section>
@ -900,11 +900,11 @@ drawPoint p = do
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="fold"><code>fold</code></h2> <h2 id="fold"><code>fold</code></h2>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/tower_folded.gif" alt="fold" style="width:50%;max-width:50%" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/tower_folded.gif" alt="fold" style="width:50%;max-width:50%" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="κατα-morphism">κατα-morphism</h2> <h2 id="κατα-morphism">κατα-morphism</h2>
<img src="http://yogsototh.github.io/Category-Theory-Presentation/categories/img/earth_catamorphed.gif" alt="catamorphism" style="width:90%;max-width:90%" /> <img src="http://yogsototh.github.com/Category-Theory-Presentation/categories/img/earth_catamorphed.gif" alt="catamorphism" style="width:90%;max-width:90%" />
<div class="flush"></div></section> <div class="flush"></div></section>
<section class="slide"> <section class="slide">
<h2 id="κατα-morphism-fold-generalization">κατα-morphism: fold generalization</h2> <h2 id="κατα-morphism-fold-generalization">κατα-morphism: fold generalization</h2>
@ -1020,7 +1020,7 @@ depth = cata phi where
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -1028,7 +1028,7 @@ depth = cata phi where
Published on 2012-12-12 Published on 2012-12-12
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -1042,7 +1042,23 @@ depth = cata phi where
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -472,7 +472,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -480,7 +480,7 @@
Published on 2013-03-16 Published on 2013-03-16
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -494,7 +494,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -157,7 +157,7 @@ $$$$$$$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&WWWWOUC, j llW&&$
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -165,7 +165,7 @@ $$$$$$$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&WWWWOUC, j llW&&$
Published on 2011-07-10 Published on 2011-07-10
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -179,7 +179,23 @@ $$$$$$$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&WWWWOUC, j llW&&$
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -1192,7 +1192,7 @@ As one of the goal of this article is to understand how to deal with existing li
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -1200,7 +1200,7 @@ As one of the goal of this article is to understand how to deal with existing li
Published on 2012-06-15 Published on 2012-06-15
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -1214,7 +1214,23 @@ As one of the goal of this article is to understand how to deal with existing li
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -317,7 +317,7 @@ myFunction :: MyData -&gt; Int
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -325,7 +325,7 @@ myFunction :: MyData -&gt; Int
Published on 2016-05-06 Published on 2016-05-06
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -339,7 +339,23 @@ myFunction :: MyData -&gt; Int
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -2340,7 +2340,7 @@ Explain why it doesnt work and can enter into an infinite loop.</li>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -2348,7 +2348,7 @@ Explain why it doesnt work and can enter into an infinite loop.</li>
Published on 2012-02-08 Published on 2012-02-08
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -2362,7 +2362,23 @@ Explain why it doesnt work and can enter into an infinite loop.</li>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -244,7 +244,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -252,7 +252,7 @@
Published on 2016-10-01 Published on 2016-10-01
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -266,7 +266,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -206,7 +206,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -214,7 +214,7 @@
Published on 2011-09-28 Published on 2011-09-28
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -228,7 +228,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -911,7 +911,7 @@ All Tests
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -919,7 +919,7 @@ All Tests
Published on 2013-11-14 Published on 2013-11-14
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -933,7 +933,23 @@ All Tests
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -336,7 +336,7 @@ $(document).ready(function() {
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -344,7 +344,7 @@ $(document).ready(function() {
Published on 2011-08-25 Published on 2011-08-25
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -358,7 +358,23 @@ $(document).ready(function() {
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -286,7 +286,7 @@ symbol <span class="fu">=</span> oneOf <span class="st">&quot;!#$%<span class="a
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -294,7 +294,7 @@ symbol <span class="fu">=</span> oneOf <span class="st">&quot;!#$%<span class="a
Published on 2013-10-09 Published on 2013-10-09
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -308,7 +308,23 @@ symbol <span class="fu">=</span> oneOf <span class="st">&quot;!#$%<span class="a
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -122,7 +122,7 @@ I memorize only one password. I use a different password on all website.</p>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -130,7 +130,7 @@ I memorize only one password. I use a different password on all website.</p>
Published on 2011-05-18 Published on 2011-05-18
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -144,7 +144,23 @@ I memorize only one password. I use a different password on all website.</p>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -2248,7 +2248,7 @@ robustnessClusters=[[ "elli" , "cowboy" , "snap" , "yesod"
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -2256,7 +2256,7 @@ robustnessClusters=[[ "elli" , "cowboy" , "snap" , "yesod"
Published on 2013-08-06 Published on 2013-08-06
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -2270,7 +2270,23 @@ robustnessClusters=[[ "elli" , "cowboy" , "snap" , "yesod"
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -189,7 +189,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -197,7 +197,7 @@
Published on 2011-10-20 Published on 2011-10-20
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -211,7 +211,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -103,7 +103,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -111,7 +111,7 @@
Published on 2014-08-16 Published on 2014-08-16
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -125,7 +125,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -252,7 +252,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -260,7 +260,7 @@
Published on 2013-03-14 Published on 2013-03-14
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -274,7 +274,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -117,7 +117,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -125,7 +125,7 @@
Published on 2012-02-02 Published on 2012-02-02
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -139,7 +139,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -285,7 +285,7 @@ let g:rbpt_colorpairs = [
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -293,7 +293,7 @@ let g:rbpt_colorpairs = [
Published on 2014-12-07 Published on 2014-12-07
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -307,7 +307,23 @@ let g:rbpt_colorpairs = [
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -129,7 +129,7 @@ htmlbody = ...</code></pre>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -137,7 +137,7 @@ htmlbody = ...</code></pre>
Published on 2011-10-04 Published on 2011-10-04
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -151,7 +151,23 @@ htmlbody = ...</code></pre>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -446,7 +446,7 @@ Enter space-separated list of methods (ex: GET POST): GET</code></pre>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -454,7 +454,7 @@ Enter space-separated list of methods (ex: GET POST): GET</code></pre>
Published on 2012-01-15 Published on 2012-01-15
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -468,7 +468,23 @@ Enter space-separated list of methods (ex: GET POST): GET</code></pre>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../pubkey.txt"> <link rel="pgpkey" href="../../../pubkey.txt">
@ -35,7 +35,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../Scratch/en/softwares">Softwares</a> <a href="../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../Scratch/en/about">About</a>
</div> </div>
</div> </div>
@ -325,7 +325,7 @@ Learn Haskell Fast and Hard <span class="nicer">»</span>
<div id="afterarticle"> <div id="afterarticle">
<div id="bottom"> <div id="bottom">
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
Yann Esposito© Yann Esposito©
@ -338,7 +338,23 @@ Learn Haskell Fast and Hard <span class="nicer">»</span>
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,7 +15,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../../pubkey.txt"> <link rel="pgpkey" href="../../../../pubkey.txt">
@ -229,7 +229,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../../Scratch/en/softwares">Softwares</a> <a href="../../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../../Scratch/en/about">About</a>
</div> </div>
<div id="totop"><a href="#header">↑ Top ↑</a></div> <div id="totop"><a href="#header">↑ Top ↑</a></div>
<div id="bottom"> <div id="bottom">
@ -237,7 +237,7 @@
Published on 2011-09-28 Published on 2011-09-28
</div> </div>
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Yann Esposito©</a>
@ -251,7 +251,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><strike>nanoc</strike></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -5,7 +5,7 @@
<title>YBlog - latest</title> <title>YBlog - latest</title>
<link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="../../../css/y.css" /> <link rel="stylesheet" type="text/css" href="../../../Scratch/css/brutalist.css" />
<link rel="stylesheet" type="text/css" href="/css/legacy.css" /> <link rel="stylesheet" type="text/css" href="/css/legacy.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../pubkey.txt"> <link rel="pgpkey" href="../../../pubkey.txt">
@ -35,7 +35,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../Scratch/en/softwares">Softwares</a> <a href="../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../Scratch/en/about">About</a>
</div> </div>
</div> </div>
@ -51,7 +51,7 @@
<div id="afterarticle"> <div id="afterarticle">
<div id="bottom"> <div id="bottom">
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
Yann Esposito© Yann Esposito©
@ -64,7 +64,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -5,7 +5,7 @@
<title>YBlog - What is this RSS thing?</title> <title>YBlog - What is this RSS thing?</title>
<link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="../../../css/y.css" /> <link rel="stylesheet" type="text/css" href="../../../Scratch/css/brutalist.css" />
<link rel="stylesheet" type="text/css" href="/css/legacy.css" /> <link rel="stylesheet" type="text/css" href="/css/legacy.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../pubkey.txt"> <link rel="pgpkey" href="../../../pubkey.txt">
@ -35,7 +35,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../Scratch/en/softwares">Softwares</a> <a href="../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../Scratch/en/about">About</a>
</div> </div>
</div> </div>
@ -65,7 +65,7 @@
<div id="afterarticle"> <div id="afterarticle">
<div id="bottom"> <div id="bottom">
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
Yann Esposito© Yann Esposito©
@ -78,7 +78,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -5,7 +5,7 @@
<title>YBlog - Softwares</title> <title>YBlog - Softwares</title>
<link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="../../../Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="../../../css/y.css" /> <link rel="stylesheet" type="text/css" href="../../../Scratch/css/brutalist.css" />
<link rel="stylesheet" type="text/css" href="/css/legacy.css" /> <link rel="stylesheet" type="text/css" href="/css/legacy.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -14,7 +14,7 @@
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]--> <![endif]-->
<!-- IndieAuth --> <!-- IndieAuth -->
<link href="https://ieji.de/@yogsototh" rel="me"> <link href="https://twitter.com/yogsototh" rel="me">
<link href="https://github.com/yogsototh" rel="me"> <link href="https://github.com/yogsototh" rel="me">
<link href="mailto:yann.esposito@gmail.com" rel="me"> <link href="mailto:yann.esposito@gmail.com" rel="me">
<link rel="pgpkey" href="../../../pubkey.txt"> <link rel="pgpkey" href="../../../pubkey.txt">
@ -35,7 +35,7 @@
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="../../../Scratch/en/softwares">Softwares</a> <a href="../../../Scratch/en/softwares">Softwares</a>
<span class="sep">¦</span> <span class="sep">¦</span>
<a href="/about-me.html">About</a> <a href="../../../Scratch/en/about">About</a>
</div> </div>
</div> </div>
@ -55,7 +55,7 @@
<div id="afterarticle"> <div id="afterarticle">
<div id="bottom"> <div id="bottom">
<div> <div>
<a href="https://ieji.de/@yogsototh">Follow @yogsototh@ieji.de</a> <a href="https://twitter.com/yogsototh">Follow @yogsototh</a>
</div> </div>
<div> <div>
Yann Esposito© Yann Esposito©
@ -68,7 +68,23 @@
<a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a> <a href="http://nanoc.ws" target="_blank" rel="noopener noreferrer nofollow"><span class="strike">nanoc</span></a>
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a> <a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer nofollow">Hakyll</a>
</div> </div>
<hr />
<div style="max-width: 100%">
<a href="https://cardanohub.org">
<img src="../../../Scratch/img/ada-logo.png" class="simple" style="height: 16px;
border-radius: 50%;
vertical-align:middle;
display:inline-block;" />
ADA:
</a>
<code style="display:inline-block;
word-wrap:break-word;
text-align: left;
vertical-align: top;
max-width: 85%;">
DdzFFzCqrhtAvdkmATx5Fm8NPJViDy85ZBw13p4XcNzVzvQg8e3vWLXq23JQWFxPEXK6Kvhaxxe7oJt4VMYHxpA2vtCFiP8fziohN6Yp
</code>
</div>
</div> </div>
</div> </div>
</div> </div>

Some files were not shown because too many files have changed in this diff Show more