An introduction to gpt for daily workflows

Integrating GPT into Daily Workflows GPT (Generative Pre-trained Transformer) is a powerful language model developed by OpenAI that can generate human-like text. It has the ability to understand and respond to natural language inputs, making it a valuable tool for various industries and professionals. One of the most significant advantages of GPT is its ability to automate repetitive tasks, such as writing emails, creating reports, or summarizing data. By integrating GPT into daily workflows, professionals can save time and increase productivity while still maintaining the quality of their work....

January 21, 2023

Client side syntax highlighting in Hugo

There are existing docs about Hugo Syntax Highliting. They indicate that generating style sheets for syntax highlighting may be required but they don’t present a complete picture. This is an attempt to create that picture. Changes to config.yaml pygmentsCodefences: true pygmentsCodefencesGuessSyntax: true pygmentsStyle: "monokai" Create a directory for the code highlighting css mkdir static/css Generate the syntax highlighting style sheet. hugo gen chromastyles --style=monokai > static/css/syntax.css

April 2, 2022