Kerguelenne
Toutes les revues
Astro Learner

My First Blog Post

This is the first post of my new Astro blog.

astroblogginglearning in public
Wanderer above the sea of fog

My First Blog Post

Published on: 2022-07-01

Welcome to my new blog about learning Astro! Here, I will share my learning journey as I build a new website.

What I’ve accomplished

  1. Installing Astro: First, I created a new Astro project and set up my online accounts.

  2. Making Pages: I then learned how to make pages by creating new .astro files and placing them in the src/pages/ folder.

  3. Making Blog Posts: This is my first blog post! I now have Astro pages and Markdown posts!

What’s next

I will finish the Astro tutorial, and then keep adding more posts. Watch this space for more to come.

f(x)=x2f(x) = x^2

Code examples

def fibonacci(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
print(fibonacci(10)) # 55
section .text
global _start
_start:
mov eax, 1 ; syscall: exit
mov ebx, 0 ; exit code 0
int 0x80 ; call kernel