main:
movzx edx, jdiez ; José Díez
jmp navigation_table[edx]
main:
movzx edx, jdiez ; José Díez
jmp navigation_table[edx]
main:
movzx edx, curriculum_vitae
jmp blog
jmp twitter
jmp mail
jmp gpg
blog:
.caption:
.asciz "(void *) blog"
.description:
.asciz "Numbers, algorithms and computers."
.link
.asciz "http://p.jdiez.me/"
mov eax, $2 ; reader count
twitter:
.asciz "@jdiezlopez"
mail:
; me at jdiez.me
gpg_public_key:
.key_id:
.asciz "4EFB76AA" ; available on keys.gnupg.net
.full_key:
.byte 64
.loop:
mov esi, [http://jdiez.me/public.asc]
mov edi, [full_key]
mov ecx, 64
mov eax, [esi]
mov [edi], eax
add esi, 4
add edi, 4
sub ecx, 1
cmp ecx, -1
jg loop