This file contains 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
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: wezterm-gui [19933] | |
Path: /Volumes/VOLUME/*/wezterm-gui | |
Identifier: wezterm-gui | |
Version: ??? | |
Code Type: ARM-64 (Native) | |
Parent Process: launchd [1] |
This file contains 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 getpass | |
import typer | |
from typerassistant import TyperAssistant | |
from openai import OpenAI | |
app = typer.Typer() | |
client = OpenAI() # Assuming OPENAI_API_KEY is set in the environment | |
@app.command() | |
def say_hello(name: str): |
This file contains 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
my_summarize () { | |
if [ $# -eq 0 ] | |
then | |
echo "Usage: my_summarize FILE_OR_URL" | |
return 1 | |
fi | |
local content | |
if [[ $1 =~ ^https?:// ]] | |
then | |
content=$(curl -s "$1" | lynx -dump -stdin) |
This file contains 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
[tool.poetry] | |
name = "poetry_test" | |
version = "0.1.0" | |
description = "" | |
authors = ["Erich Blume <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
hermes = {path = "../hermes/", develop = false} |
This file contains 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
[tool.poetry] | |
name = "poetry_example" | |
version = "0.1.0" | |
description = "" | |
authors = ["Erich Blume <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
apsw = "^3.9" |
This file contains 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
tristan:cs_sjsu eblume$ cat ~/Library/Logs/Homebrew/config.log | |
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by guile configure 1.8.7, which was | |
generated by GNU Autoconf 2.63. Invocation command line was | |
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/guile/1.8.7 --with-libreadline-prefix=/usr/local/Cellar/readline/6.2.2 | |
## --------- ## |
This file contains 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
tristan:cs_sjsu eblume$ brew install guile | |
==> Downloading http://ftpmirror.gnu.org/guile/guile-1.8.7.tar.gz | |
Already downloaded: /Users/eblume/Library/Caches/Homebrew/guile-1.8.7.tar.gz | |
==> ./configure --prefix=/usr/local/Cellar/guile/1.8.7 --with-libreadline-prefix | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... build-aux/install-sh -c -d | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no |
This file contains 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
tristan:cs_sjsu eblume$ brew doctor | |
Warning: "config" scripts exist outside your system or Homebrew directories. | |
`./configure` scripts often look for *-config scripts to determine if | |
software packages are installed, and what additional flags to use when | |
compiling and linking. | |
Having additional scripts in your path can confuse software installed via | |
Homebrew if the config script overrides a system or Homebrew provided | |
script of the same name. We found the following "config" scripts: |