Skip to content

A stylistically minimal, privacy respecting, linear blogging system, written in the V programming language.

License

Notifications You must be signed in to change notification settings

djrondon/me.l-m.dev

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is me.l-m.dev, a complete upgrade from an older linear blogging system.

It has been built from the ground up in V using a high performance custom made barebones HTTP web server/framework. This is a self contained site, with zero JavaScript.

How did I do it?

A large amount of templating, messing around with sqlite3, a single threaded picoev event loop, HTTP spec caching/etags, lots of regex, and a lot of thinking.

posts

posts

I worked hard to make a nice interface, one which is fast and dynamic, and uses zero JavaScript. I relied a lot on the existing HTTP standard + URLs, to jump you to specific parts of the page and use HTML forms to change content.

Jump links using /#00000000 are used extensively by the backend to route the client.

safe youtube + spotify embed

yt-embed spotify-embed

YouTube and Spotify embeds are by design, horrible offenders in the amount of JavaScript they ship to clients to perform tracking.

The backend only needs to scrape Spotify servers once, using regex to get the metadata it needs. All media YouTube thumbnails and Spotify media are saved to the primary database for further reads after that.

spotify-cache-db

tags and searching

post-tags

A space separated list of tags can be applied to a post. Inside the search tab at the very top, you can search for these tags and the content within.

The search functionality uses a case insensitive glob query.

  • *.wasm
    • test/helo.wasm
    • file.wasm
  • stas*compiler
    • stas COMPILER
    • stas#0000000comPiler
    • stas is my programming language i implemented in my first compiler

go see for yourself!

  • I created this website for myself in V.
  • I have open sourced it under AGPLV3.
  • Go visit me.l-m.dev.

how to build

Building with V is easy, simply have the V compiler installed on your system and run v . in the root directory of the repository.

You can get a copy of the v compiler here.

running the webserver

The server expects a few things in order to run:

  • There must be a backup/ folder in the working directory of the executable.
  • The SECRET envvar should be set, and is used in https://<url>/auth.
  • The base_url const in main.v should be changed to point to your website's URL.
  • Optionally, the PORT envvar can be set, but defaults to port 8080.

About

A stylistically minimal, privacy respecting, linear blogging system, written in the V programming language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • V 74.1%
  • HTML 25.9%