1. Tutorial

    Installing Goose-CLI with Ollama for Local AI Coding

    Posted last month

    If you're (like me) liking the idea of having an AI coding assistant that runs completely locally on your machine (privacy!), there's a good chance you've stumbled upon Goose-CLI. Combine it with Ollama for running AI models locally, and you've got yourself a pretty powerful setup that doesn't send your code to the cloud.

    Let's see what we need to do in order to get both systems up and running, configure them to work together, and set up some convenient shortcuts to switch between coding and writing tasks.

  2. Tutorial

    Netlify Forms 💚 Nuxt Static Sites

    Posted 7 months ago

    If you're (like me) liking the ease of hosting with Netlify and are using Nuxt to power a static site, there is probably a rule of thumb which predicts when you'll need a form on your site. Luckily, Netlify has support built in, but you need to set up your configuration correctly for it to work.

    Let's see what we need to do in order to add a concise form (you'll know how to take it from there, I'm sure) and get submissions in your Netlify dashboard.

  3. Tutorial

    Improve your markdown mastery in github

    Posted last year

    When working on pull requests on github, use the comment system or in text documents in your repository, the text is converted to and displayed as markdown. Here's a couple of tricks you can use to leverage some features for better readability and clear communications when cocreating in github.

  4. Tutorial

    Combining ReactJS and VueJS in one website using Astro 🚀

    Posted 3 years ago

    With the second major version already released, there's a buzz surrounding Astro and it's hyper performant content focussed web applications. Apart from the focus on speed, Astro is also labeled itself as a "all-in-one" web framework.

    All-in-one meaning that it supports most modern frontend frameworks with zero configuration. I decided to research that claim and I am pleasantly surprised!

  5. Tutorial

    Auto generate anchor links in Contentful & documentToHtmlString

    Posted 3 years ago

    For this very blog I sometimes want to do internal linking. A common practice for my writing is to have a heading that marks the beginning of a relevant section. Rather than managing the anchor links by hand, I used the `documentToHtmlString` method (provided by Contentful to convert the document structure to HTML structure) to do it for me and generate predictable anchors.

  6. Tutorial

    Automated moderation using OpenAI

    Posted 3 years ago

    With AI systems on the rise, I think it's valid to take a look at where they can play a role in supporting our tasks now and for the future. The OpenAI platform allows you to make use of published algorithms in a fairly straightforward way. It's the perfect gateway drug into AI and Machine Learning!

    In this tutorial we'll take a look at a specific API, namely the one that helps you in intercepting user input by applying natural language interpretation to use as moderation.