I hereby claim:
- I am squiter on github.
- I am squiter (https://keybase.io/squiter) on keybase.
- I have a public key ASDgxPVHnRyB_vm4cU9MOyUgzytWD4tNcvMBCYaLhqgezQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 1GAX1DS5Fv3Y4wJUri8aKe3rzY18my473H https://explorer.blockstack.org/address/1GAX1DS5Fv3Y4wJUri8aKe3rzY18my473H |
defmodule ArticleBuilder do | |
def generate_content(topic) do | |
initial_messages = [ | |
%{role: :system, content: "You are an expert at crafting SEO friendly blog articles"} | |
] | |
with {:outline, {:ok, _outline, outline_messages}} <- | |
{:outline, create_outline(initial_messages, topic)}, | |
{:article, {:ok, article, _article_messages}} <- | |
{:article, create_article(outline_messages)}, |
function handleD20Roll(mode) { | |
const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); | |
const cell = sheet.getActiveCell(); | |
const cellValue = cell.getValue(); | |
const cellStr = String(cellValue).toLowerCase().replace(/\s+/g, ""); | |
const ui = SpreadsheetApp.getUi(); | |
let total = 0; | |
let formulaLog = ""; | |
let rolls = []; |