This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { parseArgs } from "util"; | |
| import fs from "fs"; | |
| const { values } = parseArgs({ | |
| args: Bun.argv, | |
| options: { | |
| path: { | |
| type: "string", | |
| }, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enum Gender { | |
| MALE | |
| FEMALE | |
| OTHER | |
| } | |
| enum CreditSource { | |
| INTERNAL | |
| EXTERNAL | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get editor completions based on the config schema | |
| "$schema" = 'https://starship.rs/config-schema.json' | |
| # Inserts a blank line between shell prompts | |
| add_newline = true | |
| # Replace the 'β―' symbol in the prompt with 'β' | |
| [character] # The name of the module we are configuring is 'character' | |
| success_symbol = '[β](bold green)' # The 'success_symbol' segment is being set to 'β' with the color 'bold green' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require('dotenv').config() | |
| import OpenAI from 'openai' | |
| import fs from 'fs' | |
| import path from 'path' | |
| import { MessageContentText } from 'openai/resources/beta/threads/messages/messages' | |
| const openai = new OpenAI({ | |
| apiKey: process.env.OPENAI_API_KEY, | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head></head> | |
| <body> | |
| <title></title> | |
| <style type="text/css"> | |
| #outlook a { | |
| padding: 0; | |
| } | |
| body { | |
| margin: 0; |