From 2d07058d39b901a569480f5b6dba56986b9f7ab6 Mon Sep 17 00:00:00 2001 From: Gabriel Altay Date: Mon, 6 Jan 2025 12:47:27 -0500 Subject: [PATCH] simpler links --- _posts/2025-01-04-ollama-model-storage.md | 10 +++++----- ...driques-bio-foundation-natural-language.md | 4 ++-- _posts/2025-01-04-setup-jekyll.md | 20 +++++++++---------- ...2025-01-04-simon-willison-on-link-blogs.md | 14 ++++++------- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/_posts/2025-01-04-ollama-model-storage.md b/_posts/2025-01-04-ollama-model-storage.md index 77be9ed..be593ac 100644 --- a/_posts/2025-01-04-ollama-model-storage.md +++ b/_posts/2025-01-04-ollama-model-storage.md @@ -4,14 +4,14 @@ date: 2025-01-04 tags: til ollama systemd --- -I was downloading some large [ollama](https://ollama.com/){:target="_blank"} models and ran out of space on my linux machine. +I was downloading some large [ollama](https://ollama.com/) models and ran out of space on my linux machine. I then realized that the default model storage location is `/usr/share`. This path is mounted on my OS disk and there is not much storage there so I wanted the downloaded models to be stored elsewhere. -It turns out this is a [common request](https://github.com/ollama/ollama/issues/680){:target="_blank"} +It turns out this is a [common request](https://github.com/ollama/ollama/issues/680) and it can be done using an `OLLAMA_MODELS` environment variable. The docs cover the pieces, - * [where models are stored](https://github.com/ollama/ollama/blob/main/docs/faq.md#where-are-models-stored){:target="_blank"} - * [configuring ollama service](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-configure-ollama-server){:target="_blank"} + * [where models are stored](https://github.com/ollama/ollama/blob/main/docs/faq.md#where-are-models-stored) + * [configuring ollama service](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-configure-ollama-server) but it took me a few tries. @@ -21,7 +21,7 @@ made an `ollama` directory and gave it * read, write, and execute permissions for user owner * read and execute permissions for group owner and others -with the octal value 755 (read more about linux permissions [here](https://www.redhat.com/en/blog/linux-file-permissions-explained){:target="_blank"}). +with the octal value 755 (read more about linux permissions [here](https://www.redhat.com/en/blog/linux-file-permissions-explained)). I then made `ollama` the user and group owner of that directory. ``` bash diff --git a/_posts/2025-01-04-sam-rodriques-bio-foundation-natural-language.md b/_posts/2025-01-04-sam-rodriques-bio-foundation-natural-language.md index df3c5ba..de7fff9 100644 --- a/_posts/2025-01-04-sam-rodriques-bio-foundation-natural-language.md +++ b/_posts/2025-01-04-sam-rodriques-bio-foundation-natural-language.md @@ -4,7 +4,7 @@ date: 2025-01-04 tags: tif future-house nlp bio-foundation --- -[Sam Rodriques](https://www.sam-rodriques.com/){:target="_blank"} +[Sam Rodriques](https://www.sam-rodriques.com/) Director and CEO of [FutureHouse](https://www.futurehouse.org/), a non-profit working on AI agents to automate research in biology and other complex sciences, discusses the need for natural language understanding alongside structured biological foundation models. @@ -12,4 +12,4 @@ a non-profit working on AI agents to automate research in biology and other comp --- -source [X post](https://x.com/SGRodriques/status/1870531405127840235){:target="_blank"} \ No newline at end of file +source [X post](https://x.com/SGRodriques/status/1870531405127840235) \ No newline at end of file diff --git a/_posts/2025-01-04-setup-jekyll.md b/_posts/2025-01-04-setup-jekyll.md index bf58d61..78c48bf 100644 --- a/_posts/2025-01-04-setup-jekyll.md +++ b/_posts/2025-01-04-setup-jekyll.md @@ -4,18 +4,18 @@ date: 2025-01-04 tags: til jekyll minimal-mistakes --- -This is how I setup a static [Jekyll](https://jekyllrb.com){:target="_blank"} +This is how I setup a static [Jekyll](https://jekyllrb.com) site hosted with -[github pages](https://pages.github.com){:target="_blank"}. +[github pages](https://pages.github.com). The code is hosted at -[https://github.com/galtay/blog](https://github.com/galtay/blog){:target="_blank"} +[https://github.com/galtay/blog](https://github.com/galtay/blog) and the site is hosted at -[https://galtay.github.io/blog](https://galtay.github.io/blog){:target="_blank"}. +[https://galtay.github.io/blog](https://galtay.github.io/blog). # Setup Ruby Install a Ruby version manager. -I used [rbenv](https://github.com/rbenv/rbenv){:target="_blank"}. +I used [rbenv](https://github.com/rbenv/rbenv). I was working on Ubuntu so I used apt, ```bash @@ -38,16 +38,16 @@ rbenv rehash # Setup Minimal Mistakes Theme -The minimal-mistakes theme by [Michael Rose](https://mademistakes.com/){:target="_blank"} is great! +The minimal-mistakes theme by [Michael Rose](https://mademistakes.com/) is great! - * [main repo](https://github.com/mmistakes/minimal-mistakes){:target="_blank"} - * [starter repo](https://github.com/mmistakes/mm-github-pages-starter){:target="_blank"} - * [docs](https://mmistakes.github.io/minimal-mistakes){:target="_blank"} + * [main repo](https://github.com/mmistakes/minimal-mistakes) + * [starter repo](https://github.com/mmistakes/mm-github-pages-starter) + * [docs](https://mmistakes.github.io/minimal-mistakes) I began with the starter repo and simply updated the links in `_config.yml` and started writing posts. Posts can be written in markdown and the flavor of markdown used is -[kramdown](https://kramdown.gettalong.org/syntax.html){:target="_blank"}. +[kramdown](https://kramdown.gettalong.org/syntax.html). # Run Locally diff --git a/_posts/2025-01-04-simon-willison-on-link-blogs.md b/_posts/2025-01-04-simon-willison-on-link-blogs.md index ad8e6eb..e6b8cff 100644 --- a/_posts/2025-01-04-simon-willison-on-link-blogs.md +++ b/_posts/2025-01-04-simon-willison-on-link-blogs.md @@ -6,15 +6,15 @@ tags: tif blogging [Simon Willison](https://en.wikipedia.org/wiki/Simon_Willison) is a co-creator of -[Django](https://www.djangoproject.com/){:target="_blank"}, gives -[great talks](https://www.youtube.com/watch?v=P1-KQZZarpc){:target="_blank"} -at events like [PyCon](https://us.pycon.org/2024/about/keynote-speakers/index.html){:target="_blank"}, +[Django](https://www.djangoproject.com/), gives +[great talks](https://www.youtube.com/watch?v=P1-KQZZarpc) +at events like [PyCon](https://us.pycon.org/2024/about/keynote-speakers/index.html), and is the kind of -[netizen](https://en.wikipedia.org/wiki/Netizen){:target="_blank"} +[netizen](https://en.wikipedia.org/wiki/Netizen) we should all aspire to be more like. In his -[My approach to running a link blog](https://simonwillison.net/2024/Dec/22/link-blog/){:target="_blank"} -post and the rest of his [how I blog](https://simonwillison.net/series/blogging/){:target="_blank"} series, +[My approach to running a link blog](https://simonwillison.net/2024/Dec/22/link-blog/) +post and the rest of his [how I blog](https://simonwillison.net/series/blogging/) series, he lets you know that he wants you to start a blog. > You should start a blog. Having your own little corner of the internet is good for the soul! @@ -46,4 +46,4 @@ Ideal world challenge accepted! You'll be able to identify my "thing i found" po --- -source [My approach to running a link blog](https://simonwillison.net/2024/Dec/22/link-blog/){:target="_blank"} \ No newline at end of file +source [My approach to running a link blog](https://simonwillison.net/2024/Dec/22/link-blog/) \ No newline at end of file