Porting all my content into a static-site

Tags
  • vuejs
  • nuxt
  • favourites

It’s been more than ten years that I haven't touched my site and I want to make-use of my skills working with Vue.js and modern Front End of the last years back to my own profit.

So this is going to be a complete port of all my previous content, talk slides, experiments, posts, Twitter feed, examples, code bits all in a static site.

It's still work in progress, at the moment https://renoirb.github.io/site/ is the live version of my site that'll replace https://renoirb.com/ and https://renoirboulanger.com.

I should piggy-back using my own public packages such as my Monorepo related content, my "Particles" monorepo project, along with archiving my thousands of web browser tabs by leveraging my Archivator (archivator package on NPM).

This is just something I've jotted down quickly so that It explains what's this for.

Keep in touch!

Features

Code blocks

At last, a way to display code that I'm happy with, it'll look like this

GET /hello
Accept: application/json

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Date: Fri, 16 Sep 2005 19:22:04 GMT
Vary: Accept

{
  "body": "Hello!"
}
GET /hello
Accept: plain/text

HTTP/1.1 200 OK
Content-Type: plain/text; charset=utf-8
Date: Fri, 16 Sep 2005 19:22:04 GMT
Vary: Accept

Hello!