HelloWorldAbove figure is from waitbutwhy

Hello world! My name is Fuyang. Maybe I will continue using this blog to update the stuff I am learning for fun :)

Github Pages together with Jekyll could be a very nice solution for building a blog since it is relatively simple to set things up.

And locally I can just use Atom and git to edit and publish posts very easily. Also it is very easy to adding pictures and maths equations, writing a blog post now feels like writing a page in latex.

function(){
  this.stuff = 'looks good';
}
1
2
3
4
5
6
7
8
9
10
11
async fn first_function() -> u32 { .. }

async fn another_function() {
    // Create the future:
    let future = first_function();
    
    // Await the future, which will execute it (and suspend
    // this function if we encounter a need to wait for I/O): 
    let result: u32 = future.await;
    ...
}

I love it :)

\[e^{i \pi} = -1\]

If you want to know how this page is built, check out here and here(it didn’t work for me, but you can get the idea here).

Also a special thank to my colleague Rasmus Berg Palm, from whom I copied the blog setup.