aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabrielgio <gabriel.giovanini@pm.me>2022-03-25 21:41:42 +0100
committergabrielgio <gabriel.giovanini@pm.me>2022-03-25 21:41:42 +0100
commit15e1487ed60e4480c7dc856e94ed36c20f347f84 (patch)
treec026ce28ce426f744bfb101e57a4812234fcf698
parentf3504421d4658345917321dad40b79068aa760a8 (diff)
downloadgabrielgio.me-15e1487ed60e4480c7dc856e94ed36c20f347f84.tar.gz
gabrielgio.me-15e1487ed60e4480c7dc856e94ed36c20f347f84.tar.bz2
gabrielgio.me-15e1487ed60e4480c7dc856e94ed36c20f347f84.zip
ref: Update genpass prject description
Add detail about the rust implementation.
-rw-r--r--config.toml2
-rw-r--r--content/projects/_index.md8
-rw-r--r--themes/flamingo/layouts/_default/baseof.html2
3 files changed, 9 insertions, 3 deletions
diff --git a/config.toml b/config.toml
index 3980f38..43c6591 100644
--- a/config.toml
+++ b/config.toml
@@ -1,6 +1,6 @@
baseURL = "https://gabrielgio.me/"
languageCode = "en-us"
-title = "Yet Another blog"
+title = "Yet Another Blog"
theme = "flamingo"
staticDir = ['static']
diff --git a/content/projects/_index.md b/content/projects/_index.md
index 3229dd9..332162b 100644
--- a/content/projects/_index.md
+++ b/content/projects/_index.md
@@ -34,4 +34,10 @@ Just a list of some projects I finished.
- [Password generator](https://genpass.gabrielgio.me/)
[<i class="fab fa-gitlab"></i>](https://gitlab.com/gabrielgio/genpass)
- That is just me having fun with clojure script.
+ It started with me having fun with clojure script ([last
+ commit](https://gitlab.com/gabrielgio/genpass/-/tree/2db3d88503fbe219e99c464c4cc8e768613e1359)).
+ Now I have been using it as a playground to play a bit with rust/wasm and it
+ is a quite interesting comparacion to make. The cljs implementation could
+ not handle more than 1k chars, while the wasm can easly handle >100k. Is it
+ useful for a password generator? Probabally not, but if it your use case now
+ I got you covered.
diff --git a/themes/flamingo/layouts/_default/baseof.html b/themes/flamingo/layouts/_default/baseof.html
index 7bbf0d5..f81dcf1 100644
--- a/themes/flamingo/layouts/_default/baseof.html
+++ b/themes/flamingo/layouts/_default/baseof.html
@@ -10,7 +10,7 @@
{{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
- <title itemprop="name">{{ .Title }} | {{ .Site.Params.description }}</title>
+ <title itemprop="name"> {{ .Title }} </title>
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}