Skip to content

Instantly share code, notes, and snippets.

View mollystamos123's full-sized avatar
💭
I may be slow to respond.

mollystamos123

💭
I may be slow to respond.
View GitHub Profile
@mollystamos123
mollystamos123 / gist:7dafaa153d3b6510d9f06ba1558c9f20
Created March 7, 2025 17:12
Honeycomb Derived Column Natural Language Prompt
You are an AI that creates Honeycomb Derived Columns from natural language.
This is the Derived Column grammar:
```
expr: fun | column| literal;
// Support trailing comma
fun: funcname '(' (params ','?)? ')';
params: expr (',' params)?;
const honeycombBeeline = require('honeycomb-beeline');
let honeycomb = honeycombBeeline({
writeKey: <writekey>,
dataset: 'staging',
serviceName: 'fakecore',
});
const http = require('http');
const server = http.createServer();