Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add README.md, LICENSE.txt | Franck Cuny | 2022-06-11 | 2 | -0/+21 |
| | |||||
* | fix(scripts): no need to create tags when deploying to fly.io | Franck Cuny | 2022-06-10 | 2 | -16/+4 |
| | | | | | | | | | | | | | I don't need tags in this repository. There's no need to create them after a deploy. Before stopping the fly.io agent, checks that we're in the CI environment. Change-Id: I6208b70023c6ae74d58e535e24b44221956dbe63 Reviewed-on: https://cl.fcuny.net/c/world/+/408 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net> | ||||
* | fix(blog): set the correct URL to my git server | Franck Cuny | 2022-06-09 | 1 | -1/+1 |
| | | | | | | | Change-Id: I0911c07d5ab0e17a09e587ba4507d0202f6c7ff3 Reviewed-on: https://cl.fcuny.net/c/world/+/364 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net> | ||||
* | fix(fcuny/monkey): remove unneeded files | Franck Cuny | 2022-05-29 | 2 | -21/+0 |
| | | | | Change-Id: If26166f29f9b519b87e288b514d2c603ca9b4413 | ||||
* | Merge remote-tracking branch 'monkey/master' | Franck Cuny | 2022-05-29 | 10 | -0/+421 |
|\ | | | | | | | Change-Id: I790690b0877ae309d1d5feb5150f136085e78206 | ||||
| * | readme: convert to org-mode | Franck Cuny | 2021-05-10 | 2 | -1/+3 |
| | | |||||
| * | lint: fix a few issues | Franck Cuny | 2021-05-10 | 3 | -1/+4 |
| | | |||||
| * | git: ignore binary for the REPL | Franck Cuny | 2021-05-10 | 1 | -0/+1 |
| | | |||||
| * | repl: support a simple REPL for some early testing | franck cuny | 2020-01-11 | 2 | -0/+41 |
| | | | | | | | | | | | | The REPL reads the input, send it to the lexer, and prints the token to STDOUT. For now nothing else is done since we still don't parse the tokens. | ||||
| * | lexer: support tokens for equal and not equal. | franck cuny | 2020-01-11 | 2 | -2/+39 |
| | | | | | | | | | | | | | | | | | | The tokens for equal (`==`) and not equal (`!=`) are composed of two characters. We introduce a new helper (`peekChar`) that we use when we encounter the token `=` or `!` to see if this is a token composed of two characters. Add some tests to ensure they are parsed correctly. | ||||
| * | token: add tokens for equal and not equal. | franck cuny | 2020-01-11 | 1 | -0/+3 |
| | | |||||
| * | lexer: test the new keywords are parsed correctly. | franck cuny | 2020-01-11 | 1 | -3/+25 |
| | | | | | | | | | | Ensure that the new keywords added (`if`, `else`, `true`, `false`, `return`) are parsed correctly. | ||||
| * | token: support more keywords | franck cuny | 2020-01-11 | 1 | -2/+13 |
| | | | | | | | | | | | | | | Add support for a few more keywords (`true`, `false`, `if`, `else`, `return`). All keywords are grouped together in the constant declaration. | ||||
| * | token: rewrite documentation for `LookupIdent`. | franck cuny | 2020-01-11 | 1 | -3/+4 |
| | | |||||
| * | lexer: delete redundant test. | franck cuny | 2020-01-11 | 1 | -32/+1 |
| | | | | | | | | | | | | | | The test `TestNextTokenBasic` was not testing anything that `TestNextTokenMonkey` was not already testing. Rename `TestNextTokenMonkey` to `TestNextToken` for clarity. | ||||
| * | Makefile: add a Makefile | franck cuny | 2020-01-11 | 1 | -0/+4 |
| | | | | | | | | For now, automate running the tests. | ||||
| * | lexer: support more operator tokens. | franck cuny | 2020-01-11 | 2 | -1/+31 |
| | | | | | | | | | | Support the operator tokens that were added to our tokenizer. This also add a few more tests to ensure we handle them correctly. | ||||
| * | token: support more operator tokens | franck cuny | 2020-01-11 | 1 | -3/+10 |
| | | | | | | | | | | | | Support additional tokens for operators (`-`, `*`, etc). This change only adds the tokens to the list of constants, and group all the tokens related to operators together. | ||||
| * | lexer: initial lexer | franck cuny | 2020-01-11 | 2 | -0/+218 |
| | | | | | | | | | | | | | | | | | | The initial lexer for the monkey language. We only support a small subset at this stage. We have some simple tests to ensure that we can parse some small snippet, and that the minimum number of tokens we need are also all supported correctly. | ||||
| * | token: initial tokenizer. | franck cuny | 2020-01-11 | 1 | -0/+48 |
| | | | | | | | | | | | | | | | | | | | | | | This is the initial tokenizer for the monkey language. For now we recognize a limited number of tokens. We only have two keywords at this stage: `fn` and `let`. `fn` is used to create function, while `let` is used for assigning variables. The other tokens are mostly to parse the source code, and recognize things like brackets, parentheses, etc. | ||||
| * | go.mod: create the module 'monkey' | franck cuny | 2020-01-11 | 1 | -0/+3 |
| | | | | | | | | | | | | The project is named monkey, we add a mod file to ensure that the tooling / dependencies are set up correctly when we import various modules in this project. | ||||
| * | Add README.md, LICENSE.txt | franck cuny | 2019-12-29 | 2 | -0/+21 |
| | |||||
* | ref(notes): drop flake.nix | Franck Cuny | 2022-05-25 | 5 | -88/+46 |
| | | | | | | | There's no need to have a flake.nix for the notes, we can use the same mechanism as for the blog and resume. Add a README so I remember how to use this in the future. | ||||
* | ref(notes): don't rely on git for modified date | Franck Cuny | 2022-05-25 | 1 | -1/+0 |
| | | | | | This is needed in order to replace the flake.nix with a default.nix, like I did for the blog earlier. | ||||
* | ref(resume): remove flake.nix | Franck Cuny | 2022-05-25 | 4 | -71/+35 |
| | | | | | | | Integrate the resume with the rest of the repository, as I did for the blog in the previous commit. Added a script to copy the resume in the static directory of the blog. | ||||
* | ref(blog): drop the flake configuration | Franck Cuny | 2022-05-25 | 5 | -89/+39 |
| | | | | | | There's no need to have multiple `flake.nix` in the repository. Make the blog part of the flake configuration at the root level of the repository, delete the one in the blog, and update the documentation. | ||||
* | ref(blog): drop the `enableGitInfo` option | Franck Cuny | 2022-05-25 | 1 | -1/+0 |
| | | | | | This is not going to work with the next change, so I'm just going to drop it. | ||||
* | feat(resume): rename readme.org to resume.org | Franck Cuny | 2022-05-23 | 3 | -40/+44 |
| | | | | | I can now have a readme.org with instructions on how to generate the resume (because I'll obviously forget again). | ||||
* | feat(resume): set the version using the date | Franck Cuny | 2022-05-23 | 1 | -1/+2 |
| | |||||
* | ref(resume): remove unneeded files for my resume | Franck Cuny | 2022-05-23 | 3 | -12/+0 |
| | | | | | In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant. | ||||
* | Merge remote-tracking branch 'resume/main' | Franck Cuny | 2022-05-23 | 7 | -0/+193 |
|\ | |||||
| * | remove unused tex style | Franck Cuny | 2022-05-13 | 1 | -106/+0 |
| | | |||||
| * | simplify the build | Franck Cuny | 2022-05-08 | 4 | -16/+41 |
| | | | | | | | | | | | | | | Running `nix build` is enough to generate the file `resume.html`. It will be created in the `result` directory automatically. The configuration for the build is also updated to run `nix build` | ||||
| * | drone: add configuration | Franck Cuny | 2022-05-07 | 2 | -0/+9 |
| | | |||||
| * | initial commit | Franck Cuny | 2022-05-01 | 7 | -0/+265 |
| | |||||
* | ref(notes): remove unneeded files for my notes | Franck Cuny | 2022-05-23 | 3 | -21/+0 |
| | | | | | In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant. | ||||
* | Merge remote-tracking branch 'notes/main' | Franck Cuny | 2022-05-23 | 26 | -0/+1677 |
|\ | |||||
| * | delete Makefile | Franck Cuny | 2022-05-11 | 1 | -27/+0 |
| | | | | | | | | This is not needed anymore. | ||||
| * | nix: add more content | Franck Cuny | 2022-05-11 | 1 | -0/+4 |
| | | |||||
| * | add drone configuration | Franck Cuny | 2022-05-11 | 1 | -0/+18 |
| | | |||||
| * | add flake support | Franck Cuny | 2022-05-11 | 3 | -0/+89 |
| | | |||||
| * | add a script to deploy the site | Franck Cuny | 2022-05-11 | 2 | -8/+15 |
| | | | | | | | | | | Instead of using the Makefile, move the content to a script. This will be executed by drone later. | ||||
| * | remove GitHub action workflow | Franck Cuny | 2022-05-11 | 1 | -18/+0 |
| | | |||||
| * | remove atom from the list of outputs | Franck Cuny | 2022-05-11 | 1 | -9/+1 |
| | | |||||
| * | update gitignore | Franck Cuny | 2022-05-10 | 1 | -0/+1 |
| | | |||||
| * | nix: add tags | Franck Cuny | 2022-05-10 | 1 | -0/+1 |
| | | |||||
| * | go: replace lsp-mode with eglot | Franck Cuny | 2022-05-10 | 1 | -66/+15 |
| | | |||||
| * | nix: start documenting what I'm learning | Franck Cuny | 2022-05-10 | 1 | -0/+21 |
| | | |||||
| * | content: update PCIe doc | Franck Cuny | 2022-04-03 | 1 | -1/+4 |
| | | |||||
| * | site: remove unnecessary elements | Franck Cuny | 2022-04-03 | 8 | -116/+40 |
| | | |||||
| * | delete some content | Franck Cuny | 2022-03-28 | 7 | -238/+0 |
| | | |||||
| * | convert blog to notes | Franck Cuny | 2022-03-28 | 11 | -116/+117 |
| | | | | | | | | Separating the two sites so I can customize them differently. | ||||
| * | note: update list of chipset for alder lake | Franck Cuny | 2022-01-30 | 1 | -2/+11 |
| | | |||||
| * | build: use more recent version of hugo | Franck Cuny | 2022-01-23 | 1 | -1/+1 |
| | | |||||
| * | notes: remove some columns for the various CPUs | Franck Cuny | 2022-01-23 | 1 | -20/+22 |
| | | |||||
| * | CSS: improve readability | Franck Cuny | 2022-01-23 | 1 | -6/+9 |
| | | | | | | | | Using Firefox' accessibility tool as a guide. | ||||
| * | CSS: adjust some font sizes | Franck Cuny | 2022-01-23 | 1 | -2/+2 |
| | | |||||
| * | CSS: switch from class to id | Franck Cuny | 2022-01-23 | 2 | -14/+14 |
| | | | | | | | | These elements are unique on each page. | ||||
| * | layout: no need for a class to element 'article' | Franck Cuny | 2022-01-23 | 3 | -3/+3 |
| | | |||||
| * | css: TOC location based on display's size | Franck Cuny | 2022-01-23 | 1 | -19/+82 |
| | | | | | | | | | | Depending on the size of the display, display the TOC either before the article or on the right of the article and let's make it sticky. | ||||
| * | layout: proper TOC | Franck Cuny | 2022-01-23 | 1 | -4/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | There's a need for two TOCs in the layout: one for when the page is on mobile; one for non mobile. When we are on mobile, we display the first TOC, before the article. When we're not on mobile, we hide that TOC and display one after the document. We restructure a bit the layout so that's it's a bit more readable too, and close tags properly. | ||||
| * | layout: wrap content in an "article" tag | Franck Cuny | 2022-01-23 | 2 | -0/+8 |
| | | |||||
| * | layout: drop the div 'main' | Franck Cuny | 2022-01-23 | 1 | -6/+4 |
| | | | | | | | | | | The div 'main' is not needed, we are creating an element named 'named' in the main block. | ||||
| * | css: change style for tables | Franck Cuny | 2022-01-23 | 1 | -4/+8 |
| | | |||||
| * | css: update color for the links | Franck Cuny | 2022-01-23 | 1 | -3/+3 |
| | | | | | | | | Use a light blue. | ||||
| * | nav: use 'fcuny.net' instead of template variable | Franck Cuny | 2022-01-21 | 1 | -1/+1 |
| | | | | | | | | | | Otherwise it's the name of the site, which is not what I'm looking for here. | ||||
| * | css: major cleanup | Franck Cuny | 2022-01-21 | 1 | -76/+84 |
| | | |||||
| * | nav: align the menu items to the right | Franck Cuny | 2022-01-21 | 1 | -2/+7 |
| | | |||||
| * | post: change formatting for the date | Franck Cuny | 2022-01-21 | 1 | -4/+4 |
| | | |||||
| * | nav: drop one item from the menu | Franck Cuny | 2022-01-21 | 1 | -7/+0 |
| | | |||||
| * | blog: leaving twitter | Franck Cuny | 2022-01-15 | 1 | -0/+10 |
| | | |||||
| * | css: more tweaking | Franck Cuny | 2022-01-13 | 1 | -29/+21 |
| | | |||||
| * | index: rephrase | Franck Cuny | 2022-01-10 | 1 | -1/+1 |
| | | |||||
| * | index: update current job | Franck Cuny | 2022-01-08 | 1 | -1/+1 |
| | | |||||
| * | blog: add content about PCIe | Franck Cuny | 2022-01-08 | 1 | -0/+196 |
| | | |||||
| * | blog: notes about AMD and Intel CPUs | Franck Cuny | 2021-12-29 | 1 | -0/+120 |
| | | |||||
| * | css: change colors for some sections | Franck Cuny | 2021-12-29 | 1 | -7/+13 |
| | | |||||
| * | css: adjust line height | Franck Cuny | 2021-12-29 | 1 | -4/+1 |
| | | |||||
| * | css: highlight links with a background color | Franck Cuny | 2021-12-29 | 1 | -2/+13 |
| | | |||||
| * | blog: article on how to use tailscale + traefik | Franck Cuny | 2021-12-29 | 1 | -0/+121 |
| | | |||||
| * | config: add author information | Franck Cuny | 2021-12-29 | 1 | -0/+4 |
| | | |||||
| * | layout: add a link to the RSS feed in the menu | Franck Cuny | 2021-12-29 | 1 | -1/+10 |
| | | | | | | | | | | Specify the weight so that the items in the menu are listed in the order I want. | ||||
| * | RSS: fix the template | Franck Cuny | 2021-12-29 | 1 | -3/+5 |
| | | | | | | | | | | Generate correctly the content of the RSS feed. I only want the blog articles, not the notes. | ||||
| * | css: improve the color and fonts | Franck Cuny | 2021-12-20 | 1 | -116/+47 |
| | | |||||
| * | index: re-organize the main page | Franck Cuny | 2021-12-20 | 1 | -9/+11 |
| | | | | | | | | Add a "contact" header with my information under it. | ||||
| * | menu: simplify the menu | Franck Cuny | 2021-12-20 | 2 | -9/+10 |
| | | |||||
| * | build: push git branches / tags after deploy | Franck Cuny | 2021-12-06 | 1 | -0/+2 |
| | | | | | | | | After a successful deploy, push all the branches / tags to origin. | ||||
| * | CSS: drop custom fonts + colors | Franck Cuny | 2021-12-06 | 1 | -19/+22 |
| | | |||||
| * | resume: update | Franck Cuny | 2021-11-12 | 1 | -0/+0 |
| | | |||||
| * | static: add my resume | Franck Cuny | 2021-11-12 | 1 | -0/+0 |
| | | |||||
| * | build: be explicit about the image to use | Franck Cuny | 2021-10-21 | 1 | -1/+1 |
| | | | | | | | | | | If we're not explicit, we're trying to run the image tagged `latest', but there's no image with that tag. | ||||
| * | static: add ssh-key from desktop | Franck Cuny | 2021-10-02 | 1 | -0/+1 |
| | | |||||
| * | build: get the proper version for tagging | Franck Cuny | 2021-09-09 | 1 | -5/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | We were evaluating the version of the app when the rule was evaluated, while we need to get the version after we run `flyctl deploy`. Since we're tagging a release, let's also annotate the tag. Remove the `--build-arg` argument to `flyct deploy` since it's being ignored (same with `docker build`). Closes #1. | ||||
| * | blog: update elisp for git/sourcegraph | Franck Cuny | 2021-09-09 | 1 | -3/+12 |
| | | |||||
| * | static: add profile picture | Franck Cuny | 2021-08-26 | 1 | -0/+0 |
| | | |||||
| * | blog: git-link and sourcegraph | Franck Cuny | 2021-08-24 | 1 | -0/+40 |
| | | |||||
| * | blog: sort pages in reverse order | Franck Cuny | 2021-08-24 | 1 | -1/+1 |
| | | |||||
| * | build: sleep before tagging | Franck Cuny | 2021-08-24 | 1 | -0/+1 |
| | | | | | | | | | | | | | | The last deploy was tagged v13, while the version deployed was 14. It's possible that running `fly info` too quickly after a deploy returns the incorrect version. Adding a `sleep 5` before running the command for git tag. | ||||
| * | CSS: various small fixes | Franck Cuny | 2021-08-23 | 1 | -2/+2 |
| | | |||||
| * | index: drop the main header | Franck Cuny | 2021-08-23 | 1 | -2/+0 |
| | | | | | | | | It's ugly. | ||||
| * | CSS: use decoration on headers only for articles | Franck Cuny | 2021-08-23 | 2 | -6/+10 |
| | | | | | | | | | | | | | | | | | | | | Add an element "article" to the single page template, and change the CSS to use the decoration for headers only for that kind of content. Having decoration for all headers is distracting, it's more suited for actual content. We also don't need decoration for h1, only smaller headers. | ||||
| * | CSS: rename the class for the tags | Franck Cuny | 2021-08-23 | 1 | -4/+6 |
| | | |||||
| * | CSS: makes the menu more readable | Franck Cuny | 2021-08-23 | 2 | -23/+39 |
| | | | | | | | | Move the title to the left and the menu items to the right. | ||||
| * | build: tag the repo after a deploy | Franck Cuny | 2021-08-15 | 1 | -2/+7 |
| | | | | | | | | | | | | | | | | If the deployment is successful, tag the repository with the version being deployed on fly.io. Don't deploy unless the repository is clean (this is done with the target `worktree-clean`). | ||||
| * | blog: working with go - initial content | Franck Cuny | 2021-08-15 | 1 | -0/+264 |
| | | | | | | | | This note captures things that are useful when working with go for me. | ||||
| * | blog: add tags to firecracker notes | Franck Cuny | 2021-08-15 | 1 | -1/+2 |
| | | |||||
| * | layout: don't use header tag in list | Franck Cuny | 2021-08-15 | 1 | -1/+1 |
| | | |||||
| * | CSS: make the content more readable | Franck Cuny | 2021-08-15 | 1 | -15/+24 |
| | | | | | | | | | | | | | | | | | | | | The Roboto Slab font is hard to read (at least for me). Switch to Droid Sans and make the text a bit smaller. Change the background of the page to white (again), and change the background color for the code snippets. Add text decoration for headlines (similar to org-bullet). | ||||
| * | CSS: support table of content | Franck Cuny | 2021-08-15 | 2 | -0/+19 |
| | | | | | | | | | | If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page. | ||||
| * | CSS: use a class for the menu | Franck Cuny | 2021-08-15 | 2 | -8/+7 |
| | | | | | | | | | | We will have more use of the tag `nav` and we will need different styles for it. | ||||
| * | blog: replace github with git.fcuny.net | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | | |||||
| * | blog: add link for containerd-to-vm code | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | | |||||
| * | css: reduce the size of the font | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | | |||||
| * | css: bigger font and highlight colors | Franck Cuny | 2021-08-05 | 2 | -6/+18 |
| | | | | | | | | | | Increase the font size and change some of the colors used for highlighting code. | ||||
| * | blog: update description | Franck Cuny | 2021-08-05 | 1 | -1/+1 |
| | | |||||
| * | blog: add SSH public keys | Franck Cuny | 2021-08-05 | 2 | -0/+2 |
| | | |||||
| * | blog: add humans.txt | Franck Cuny | 2021-08-05 | 2 | -0/+11 |
| | | | | | | | | See humanstxt.org for more information. | ||||
| * | hugo: enable git information again | Franck Cuny | 2021-08-05 | 1 | -1/+1 |
| | | | | | | | | | | Now that we're using a more recent version of the Docker image for hugo that comes with git, we can enable again git information. | ||||
| * | build: add a Makefile | Franck Cuny | 2021-08-05 | 1 | -0/+29 |
| | | | | | | | | | | Add a Makefile to take care of most common operations (build, deploy, etc). | ||||
| * | build: add Dockerfile | Franck Cuny | 2021-08-05 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | The Dockerfile used by fly is relying on an older version of hugo ([1]). We can use a newer version and provide our own setup, and configure with the flags we want (e.g. promote to HTTS automatically). [1] https://github.com/superfly/flyctl/blob/3eb204909fbecd5fd2b1ba4517cdbce2abd9f74a/internal/build/imgsrc/builtins/defaultbuiltins.go#L89 | ||||
| * | hugo: TLS by default | Franck Cuny | 2021-07-19 | 1 | -1/+1 |
| | | |||||
| * | github: deploy to fly.io instead of GH pages | Franck Cuny | 2021-06-20 | 1 | -17/+5 |
| | | |||||
| * | hugo: don't enable git info | Franck Cuny | 2021-06-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The docker image used by fly.io to deploy a static website with hugo does not come with git, which prevents us to use the option `enableGitInfo`. This is not critical for now, so let's disable it so we can deploy. | ||||
| * | fly: add configuration for fly.io | Franck Cuny | 2021-06-20 | 1 | -0/+40 |
| | | |||||
| * | blog: update to containerd article | Franck Cuny | 2021-05-19 | 1 | -1/+1 |
| | | | | | | | | Fix boot options | ||||
| * | css: add a scroll bar if the content overflows | Franck Cuny | 2021-05-18 | 1 | -1/+1 |
| | | |||||
| * | blog: containerd to firecracker | Franck Cuny | 2021-05-17 | 1 | -0/+567 |
| | | |||||
| * | layout: add a navbar | Franck Cuny | 2021-04-22 | 9 | -38/+75 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | I want to differentiate blog's entries from more general notes. For this, we create two menu entries, and add a navbar at the top. The nav bar let us select between the two kind of articles: blogs or notes. For now we have a single blog entry, and no notes. The page to list entries is simplified: we use the same layout for all lists (tags, notes, blogs). The CSS is updated to support the new nav bar. | ||||
| * | toml: re-configure markup | Franck Cuny | 2021-04-13 | 1 | -1/+18 |
| | | |||||
| * | css: switch to sans-serif; add tables; other tweaks | Franck Cuny | 2021-04-13 | 1 | -5/+28 |
| | | |||||
| * | css: remove extra white space | Franck Cuny | 2021-04-11 | 1 | -1/+1 |
| | | |||||
| * | blog: google doc failure | Franck Cuny | 2021-04-11 | 1 | -0/+56 |
| | | |||||
| * | css: change font to roboto slab | Franck Cuny | 2021-04-11 | 1 | -5/+5 |
| | | |||||
| * | taxonomy: add pages for tags | Franck Cuny | 2021-04-11 | 3 | -20/+48 |
| | | | | | | | | | | | | | | We want to have pages that list all the articles related to a given tag. Update the configuration to add support for tags and the permalink structure. | ||||
| * | layout: add date and tags to single pages | Franck Cuny | 2021-04-06 | 2 | -1/+42 |
| | | | | | | | | | | | | | | We want to show the tags and the published/updated date for the articles. Add to the CSS the classes for these new elements. | ||||
| * | css: update style for links and headers | Franck Cuny | 2021-04-06 | 1 | -4/+8 |
| | | | | | | | | Indent properly the CSS | ||||
| * | css: set background color for code block | Franck Cuny | 2021-04-06 | 1 | -5/+9 |
| | | | | | | | | Indent properly the CSS for the `pre` tag. | ||||
| * | css: change the default font | Franck Cuny | 2021-04-06 | 1 | -5/+5 |
| | | |||||
| * | layout: fix format for the date | Franck Cuny | 2021-04-06 | 1 | -1/+1 |
| | | |||||
| * | layout: clean up empty space | Franck Cuny | 2021-04-06 | 1 | -1/+1 |
| | | |||||
| * | add action to publish to GH pages | Franck Cuny | 2021-03-07 | 1 | -0/+30 |
| | | | | | | | | | | | | Add a workflow configuration to publish to GitHub pages. This is using the standard configuration from https://gohugo.io/hosting-and-deployment/hosting-on-github/ | ||||
| * | initial site with hugo | Franck Cuny | 2021-03-07 | 11 | -0/+180 |
| | | | | | | | | | Start my website from scratch once more, using hugo to generate it. For now the layout is pretty simple: - an index page that will list future notes - notes should be created under the "content" directory The theme is custom and I'll try to keep this simple. | ||||
* | ref(blog): remove unneeded files for the blog | Franck Cuny | 2022-05-23 | 4 | -28/+1 |
| | | | | | In a monorepo setup, the CI configuration is not used at this level of the tree, and the gitignore/envrc are not relevant. | ||||
* | sign the drone configuration | Franck Cuny | 2022-05-11 | 1 | -0/+6 |
| | |||||
* | deploy: stop the flyctl agent at the end | Franck Cuny | 2022-05-10 | 1 | -0/+2 |
| | | | | | | | | | | | I ran into the following issue: ``` The agent failed to start with the following error log: 162022/05/11 02:38:11.375368 srv another instance of the agent is already running ``` I'm not sure this is the right approach, but it's a start. | ||||
* | delete Makefile | Franck Cuny | 2022-05-10 | 1 | -19/+0 |
| | | | | | This is not needed anymore, I'm not running it in a container, and the build is done remotely by fly when I do a build. | ||||
* | who knows | Franck Cuny | 2022-05-10 | 1 | -1/+1 |
| | |||||
* | i don't think it will work | Franck Cuny | 2022-05-10 | 2 | -9/+11 |
| | |||||
* | another try | Franck Cuny | 2022-05-10 | 1 | -0/+21 |
| | |||||
* | one more time | Franck Cuny | 2022-05-10 | 2 | -3/+2 |
| | |||||
* | maybe this time | Franck Cuny | 2022-05-10 | 1 | -1/+1 |
| | |||||
* | I'll get it right at some point | Franck Cuny | 2022-05-10 | 1 | -1/+1 |
| | |||||
* | fix name of the branch for done | Franck Cuny | 2022-05-10 | 2 | -19/+1 |
| | | | | Delete the workflow for GitHub actions. | ||||
* | add a basic README | Franck Cuny | 2022-05-10 | 1 | -0/+8 |
| | |||||
* | add drone configuration and cleanup nix | Franck Cuny | 2022-05-10 | 4 | -14/+54 |
| | | | | | | | | Add a drone configuration to run the deploy on a push to the main branch. Cleanup the nix configuration to only keep support for `nix run` (which will run the hugo server). | ||||
* | static: add my resume as a static page | Franck Cuny | 2022-05-01 | 1 | -0/+209 |
| | |||||
* | config: remove the link to the feed | Franck Cuny | 2022-05-01 | 1 | -8/+1 |
| | | | | It's already in the footer. | ||||
* | scripts: actually deploy to fly | Franck Cuny | 2022-05-01 | 1 | -0/+2 |
| | |||||
* | content: remove some notes | Franck Cuny | 2022-05-01 | 4 | -1159/+0 |
| | | | | They are at https://notes.fcuny.net now. | ||||
* | build: slowly moving to nix | Franck Cuny | 2022-05-01 | 5 | -16/+57 |
| | | | | | | | | Add a `flake.nix' configuration to pull the required dependencies and run the server. Remove a few targets from the Makefile and move the deployment part to a script. | ||||
* | layout: improve readability and remove /notes | Franck Cuny | 2022-02-16 | 6 | -96/+110 |
| | | | | | | | | | | The notes will be moved to a different site/repository, with their own style. Update the index page to make it more readable. Make the header more visible with fewer links. Add a footer, with links using SVG icons. | ||||
* | note: update list of chipset for alder lake | Franck Cuny | 2022-01-30 | 1 | -2/+11 |
| | |||||
* | build: use more recent version of hugo | Franck Cuny | 2022-01-23 | 1 | -1/+1 |
| | |||||
* | notes: remove some columns for the various CPUs | Franck Cuny | 2022-01-23 | 1 | -20/+22 |
| | |||||
* | CSS: improve readability | Franck Cuny | 2022-01-23 | 1 | -6/+9 |
| | | | | Using Firefox' accessibility tool as a guide. | ||||
* | CSS: adjust some font sizes | Franck Cuny | 2022-01-23 | 1 | -2/+2 |
| | |||||
* | CSS: switch from class to id | Franck Cuny | 2022-01-23 | 2 | -14/+14 |
| | | | | These elements are unique on each page. | ||||
* | layout: no need for a class to element 'article' | Franck Cuny | 2022-01-23 | 3 | -3/+3 |
| | |||||
* | css: TOC location based on display's size | Franck Cuny | 2022-01-23 | 1 | -19/+82 |
| | | | | | Depending on the size of the display, display the TOC either before the article or on the right of the article and let's make it sticky. | ||||
* | layout: proper TOC | Franck Cuny | 2022-01-23 | 1 | -4/+13 |
| | | | | | | | | | | | | There's a need for two TOCs in the layout: one for when the page is on mobile; one for non mobile. When we are on mobile, we display the first TOC, before the article. When we're not on mobile, we hide that TOC and display one after the document. We restructure a bit the layout so that's it's a bit more readable too, and close tags properly. | ||||
* | layout: wrap content in an "article" tag | Franck Cuny | 2022-01-23 | 2 | -0/+8 |
| | |||||
* | layout: drop the div 'main' | Franck Cuny | 2022-01-23 | 1 | -6/+4 |
| | | | | | The div 'main' is not needed, we are creating an element named 'named' in the main block. | ||||
* | css: change style for tables | Franck Cuny | 2022-01-23 | 1 | -4/+8 |
| | |||||
* | css: update color for the links | Franck Cuny | 2022-01-23 | 1 | -3/+3 |
| | | | | Use a light blue. | ||||
* | nav: use 'fcuny.net' instead of template variable | Franck Cuny | 2022-01-21 | 1 | -1/+1 |
| | | | | | Otherwise it's the name of the site, which is not what I'm looking for here. | ||||
* | css: major cleanup | Franck Cuny | 2022-01-21 | 1 | -76/+84 |
| | |||||
* | nav: align the menu items to the right | Franck Cuny | 2022-01-21 | 1 | -2/+7 |
| | |||||
* | post: change formatting for the date | Franck Cuny | 2022-01-21 | 1 | -4/+4 |
| | |||||
* | nav: drop one item from the menu | Franck Cuny | 2022-01-21 | 1 | -7/+0 |
| | |||||
* | blog: leaving twitter | Franck Cuny | 2022-01-15 | 1 | -0/+10 |
| | |||||
* | css: more tweaking | Franck Cuny | 2022-01-13 | 1 | -29/+21 |
| | |||||
* | index: rephrase | Franck Cuny | 2022-01-10 | 1 | -1/+1 |
| | |||||
* | index: update current job | Franck Cuny | 2022-01-08 | 1 | -1/+1 |
| | |||||
* | blog: add content about PCIe | Franck Cuny | 2022-01-08 | 1 | -0/+196 |
| | |||||
* | blog: notes about AMD and Intel CPUs | Franck Cuny | 2021-12-29 | 1 | -0/+120 |
| | |||||
* | css: change colors for some sections | Franck Cuny | 2021-12-29 | 1 | -7/+13 |
| | |||||
* | css: adjust line height | Franck Cuny | 2021-12-29 | 1 | -4/+1 |
| | |||||
* | css: highlight links with a background color | Franck Cuny | 2021-12-29 | 1 | -2/+13 |
| | |||||
* | blog: article on how to use tailscale + traefik | Franck Cuny | 2021-12-29 | 1 | -0/+121 |
| | |||||
* | config: add author information | Franck Cuny | 2021-12-29 | 1 | -0/+4 |
| | |||||
* | layout: add a link to the RSS feed in the menu | Franck Cuny | 2021-12-29 | 1 | -1/+10 |
| | | | | | Specify the weight so that the items in the menu are listed in the order I want. | ||||
* | RSS: fix the template | Franck Cuny | 2021-12-29 | 1 | -3/+5 |
| | | | | | Generate correctly the content of the RSS feed. I only want the blog articles, not the notes. | ||||
* | css: improve the color and fonts | Franck Cuny | 2021-12-20 | 1 | -116/+47 |
| | |||||
* | index: re-organize the main page | Franck Cuny | 2021-12-20 | 1 | -9/+11 |
| | | | | Add a "contact" header with my information under it. | ||||
* | menu: simplify the menu | Franck Cuny | 2021-12-20 | 2 | -9/+10 |
| | |||||
* | build: push git branches / tags after deploy | Franck Cuny | 2021-12-06 | 1 | -0/+2 |
| | | | | After a successful deploy, push all the branches / tags to origin. | ||||
* | CSS: drop custom fonts + colors | Franck Cuny | 2021-12-06 | 1 | -19/+22 |
| | |||||
* | resume: update | Franck Cuny | 2021-11-12 | 1 | -0/+0 |
| | |||||
* | static: add my resume | Franck Cuny | 2021-11-12 | 1 | -0/+0 |
| | |||||
* | build: be explicit about the image to use | Franck Cuny | 2021-10-21 | 1 | -1/+1 |
| | | | | | If we're not explicit, we're trying to run the image tagged `latest', but there's no image with that tag. | ||||
* | static: add ssh-key from desktop | Franck Cuny | 2021-10-02 | 1 | -0/+1 |
| | |||||
* | build: get the proper version for tagging | Franck Cuny | 2021-09-09 | 1 | -5/+2 |
| | | | | | | | | | | | | We were evaluating the version of the app when the rule was evaluated, while we need to get the version after we run `flyctl deploy`. Since we're tagging a release, let's also annotate the tag. Remove the `--build-arg` argument to `flyct deploy` since it's being ignored (same with `docker build`). Closes #1. | ||||
* | blog: update elisp for git/sourcegraph | Franck Cuny | 2021-09-09 | 1 | -3/+12 |
| | |||||
* | static: add profile picture | Franck Cuny | 2021-08-26 | 1 | -0/+0 |
| | |||||
* | blog: git-link and sourcegraph | Franck Cuny | 2021-08-24 | 1 | -0/+40 |
| | |||||
* | blog: sort pages in reverse order | Franck Cuny | 2021-08-24 | 1 | -1/+1 |
| | |||||
* | build: sleep before tagging | Franck Cuny | 2021-08-24 | 1 | -0/+1 |
| | | | | | | | The last deploy was tagged v13, while the version deployed was 14. It's possible that running `fly info` too quickly after a deploy returns the incorrect version. Adding a `sleep 5` before running the command for git tag. | ||||
* | CSS: various small fixes | Franck Cuny | 2021-08-23 | 1 | -2/+2 |
| | |||||
* | index: drop the main header | Franck Cuny | 2021-08-23 | 1 | -2/+0 |
| | | | | It's ugly. | ||||
* | CSS: use decoration on headers only for articles | Franck Cuny | 2021-08-23 | 2 | -6/+10 |
| | | | | | | | | | | Add an element "article" to the single page template, and change the CSS to use the decoration for headers only for that kind of content. Having decoration for all headers is distracting, it's more suited for actual content. We also don't need decoration for h1, only smaller headers. | ||||
* | CSS: rename the class for the tags | Franck Cuny | 2021-08-23 | 1 | -4/+6 |
| | |||||
* | CSS: makes the menu more readable | Franck Cuny | 2021-08-23 | 2 | -23/+39 |
| | | | | Move the title to the left and the menu items to the right. | ||||
* | build: tag the repo after a deploy | Franck Cuny | 2021-08-15 | 1 | -2/+7 |
| | | | | | | | | If the deployment is successful, tag the repository with the version being deployed on fly.io. Don't deploy unless the repository is clean (this is done with the target `worktree-clean`). | ||||
* | blog: working with go - initial content | Franck Cuny | 2021-08-15 | 1 | -0/+264 |
| | | | | This note captures things that are useful when working with go for me. | ||||
* | blog: add tags to firecracker notes | Franck Cuny | 2021-08-15 | 1 | -1/+2 |
| | |||||
* | layout: don't use header tag in list | Franck Cuny | 2021-08-15 | 1 | -1/+1 |
| | |||||
* | CSS: make the content more readable | Franck Cuny | 2021-08-15 | 1 | -15/+24 |
| | | | | | | | | | | The Roboto Slab font is hard to read (at least for me). Switch to Droid Sans and make the text a bit smaller. Change the background of the page to white (again), and change the background color for the code snippets. Add text decoration for headlines (similar to org-bullet). | ||||
* | CSS: support table of content | Franck Cuny | 2021-08-15 | 2 | -0/+19 |
| | | | | | If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page. | ||||
* | CSS: use a class for the menu | Franck Cuny | 2021-08-15 | 2 | -8/+7 |
| | | | | | We will have more use of the tag `nav` and we will need different styles for it. | ||||
* | blog: replace github with git.fcuny.net | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | |||||
* | blog: add link for containerd-to-vm code | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | |||||
* | css: reduce the size of the font | Franck Cuny | 2021-08-14 | 1 | -1/+1 |
| | |||||
* | css: bigger font and highlight colors | Franck Cuny | 2021-08-05 | 2 | -6/+18 |
| | | | | | Increase the font size and change some of the colors used for highlighting code. | ||||
* | blog: update description | Franck Cuny | 2021-08-05 | 1 | -1/+1 |
| | |||||
* | blog: add SSH public keys | Franck Cuny | 2021-08-05 | 2 | -0/+2 |
| | |||||
* | blog: add humans.txt | Franck Cuny | 2021-08-05 | 2 | -0/+11 |
| | | | | See humanstxt.org for more information. | ||||
* | hugo: enable git information again | Franck Cuny | 2021-08-05 | 1 | -1/+1 |
| | | | | | Now that we're using a more recent version of the Docker image for hugo that comes with git, we can enable again git information. | ||||
* | build: add a Makefile | Franck Cuny | 2021-08-05 | 1 | -0/+29 |
| | | | | | Add a Makefile to take care of most common operations (build, deploy, etc). | ||||
* | build: add Dockerfile | Franck Cuny | 2021-08-05 | 1 | -0/+7 |
| | | | | | | | | The Dockerfile used by fly is relying on an older version of hugo ([1]). We can use a newer version and provide our own setup, and configure with the flags we want (e.g. promote to HTTS automatically). [1] https://github.com/superfly/flyctl/blob/3eb204909fbecd5fd2b1ba4517cdbce2abd9f74a/internal/build/imgsrc/builtins/defaultbuiltins.go#L89 | ||||
* | hugo: TLS by default | Franck Cuny | 2021-07-19 | 1 | -1/+1 |
| | |||||
* | github: deploy to fly.io instead of GH pages | Franck Cuny | 2021-06-20 | 1 | -17/+5 |
| | |||||
* | hugo: don't enable git info | Franck Cuny | 2021-06-20 | 1 | -1/+1 |
| | | | | | | | The docker image used by fly.io to deploy a static website with hugo does not come with git, which prevents us to use the option `enableGitInfo`. This is not critical for now, so let's disable it so we can deploy. | ||||
* | fly: add configuration for fly.io | Franck Cuny | 2021-06-20 | 1 | -0/+40 |
| | |||||
* | blog: update to containerd article | Franck Cuny | 2021-05-19 | 1 | -1/+1 |
| | | | | Fix boot options | ||||
* | css: add a scroll bar if the content overflows | Franck Cuny | 2021-05-18 | 1 | -1/+1 |
| | |||||
* | blog: containerd to firecracker | Franck Cuny | 2021-05-17 | 1 | -0/+567 |
| | |||||
* | layout: add a navbar | Franck Cuny | 2021-04-22 | 9 | -38/+75 |
| | | | | | | | | | | | | | I want to differentiate blog's entries from more general notes. For this, we create two menu entries, and add a navbar at the top. The nav bar let us select between the two kind of articles: blogs or notes. For now we have a single blog entry, and no notes. The page to list entries is simplified: we use the same layout for all lists (tags, notes, blogs). The CSS is updated to support the new nav bar. | ||||
* | toml: re-configure markup | Franck Cuny | 2021-04-13 | 1 | -1/+18 |
| | |||||
* | css: switch to sans-serif; add tables; other tweaks | Franck Cuny | 2021-04-13 | 1 | -5/+28 |
| | |||||
* | css: remove extra white space | Franck Cuny | 2021-04-11 | 1 | -1/+1 |
| | |||||
* | blog: google doc failure | Franck Cuny | 2021-04-11 | 1 | -0/+56 |
| | |||||
* | css: change font to roboto slab | Franck Cuny | 2021-04-11 | 1 | -5/+5 |
| | |||||
* | taxonomy: add pages for tags | Franck Cuny | 2021-04-11 | 3 | -20/+48 |
| | | | | | | | We want to have pages that list all the articles related to a given tag. Update the configuration to add support for tags and the permalink structure. | ||||
* | layout: add date and tags to single pages | Franck Cuny | 2021-04-06 | 2 | -1/+42 |
| | | | | | | | We want to show the tags and the published/updated date for the articles. Add to the CSS the classes for these new elements. | ||||
* | css: update style for links and headers | Franck Cuny | 2021-04-06 | 1 | -4/+8 |
| | | | | Indent properly the CSS | ||||
* | css: set background color for code block | Franck Cuny | 2021-04-06 | 1 | -5/+9 |
| | | | | Indent properly the CSS for the `pre` tag. | ||||
* | css: change the default font | Franck Cuny | 2021-04-06 | 1 | -5/+5 |
| | |||||
* | layout: fix format for the date | Franck Cuny | 2021-04-06 | 1 | -1/+1 |
| | |||||
* | layout: clean up empty space | Franck Cuny | 2021-04-06 | 1 | -1/+1 |
| | |||||
* | add action to publish to GH pages | Franck Cuny | 2021-03-07 | 1 | -0/+30 |
| | | | | | | Add a workflow configuration to publish to GitHub pages. This is using the standard configuration from https://gohugo.io/hosting-and-deployment/hosting-on-github/ |