Skip to content

Instantly share code, notes, and snippets.

View itsbrex's full-sized avatar
🎯
focusing

Brian Roach itsbrex

🎯
focusing
View GitHub Profile
# Must have conda installed
# It costs approximately $0.2 (in GPT-4 API fees) to generate one example with analysis and design, and around $2.0 for a full project.
conda create -n metagpt python=3.11.4
conda activate metagpt
npm --version # to check you have npm installed
# optional: install node if you don't have it
npm install -g @mermaid-js/mermaid-cli
git clone https://github.com/geekan/metagpt
cd metagpt
@wolfecameron
wolfecameron / llm_preso_links_2.txt
Created August 10, 2023 13:42
LLM Presentation Links (EY Week #2)
@rsimd
rsimd / pyproject.toml
Created July 23, 2023 07:13
`pyproject.toml` for `rye` to install `pytorch` that can use `cuda` (wip)
[project]
name = "dsbook"
version = "0.1.0"
description = "Add a short description here"
dependencies = [
"numpy>=1.24.4",
"scipy>=1.10.1",
"pandas>=2.0.3",
"matplotlib>=3.7.2",
"plotly>=5.15.0",
@bagusnl
bagusnl / readme.md
Created July 6, 2023 00:56
Setting up Cloudflare R2 as CDN with HTTP frontend also uploads files from GitHub repository to said CDN with Actions

Setting up Cloudflare R2 as CDN

This guide will set up a CDN with URL frontend and sync them up from GitHub Repo with Actions

Things needed:

  • A domain that is tied to Cloudflare (free CF account is probably enough, depends on the load to your CDN)

Steps:

  1. Make a Cloudflare R2 bucket > Take a note of its bucket name.
@rihardn
rihardn / chrome-flags-for-tools.md
Last active December 16, 2024 11:19
Chrome Flags for Tooling

Chrome Flags for Tooling

Many tools maintain a list of runtime flags for Chrome to configure the environment. This file is an attempt to document all chrome flags that are relevant to tools, automation, benchmarking, etc.

All use cases are different, so you'll have to choose which flags are most appropriate.

Here's a Nov 2022 comparison of what flags all these tools use.

Commonly unwanted browser features

@madawei2699
madawei2699 / CDDR.md
Last active October 30, 2023 11:56
ChatGPT Driven Development Record / SendMessages / myGPTUser

2023-04-13


ChatGPT

You

@hyperupcall
hyperupcall / settings.jsonc
Last active June 26, 2025 09:47
VSCode config to disable popular extensions' annoyances (telemetry, notifications, welcome pages, etc.)
// I'm tired of extensions that automatically:
// - show welcome pages / walkthroughs
// - show release notes
// - send telemetry
// - recommend things
//
// This disables all of that stuff.
// If you have more config, leave a comment so I can add it!!
{
@s-macke
s-macke / gpt-4-tokens.txt
Last active May 20, 2025 19:08
All 100k GPT-4 Tokens. New lines are replaced with \n and carriage returns with \r. The index of the token is (index=line-1). The list is extracted using https://github.com/openai/tiktoken
!
"
#
$
%
&
'
(
)
*
@leandrochiarini
leandrochiarini / arxiv-today.py
Created March 29, 2023 18:42
Command line interface to look for arxiv articles from today using fzf. It also saved all opened articles
#!/usr/bin/env python3
import arxiv
import feedparser
import re
import os
from pathlib import Path
from pyfzf.pyfzf import FzfPrompt
import webbrowser
import argparse
import sys