{
"subject": "blue glass dragon",
"style": "photorealistic 3D render",
"description": "A majestic dragon with a sleek, translucent body made of blue-tinted glass, featuring iridescent surfaces that shift between blue, green, and purple hues. It has smooth, polished scales, delicate wings with intricate patterns, and a tail with subtle reflective tips. The dragon's eyes are filled with a soft, glowing light.",
"material": "solid glass with transparent, iridescent, and refractive properties",
"surface_texture": "smooth, polished, and highly reflective with refractive light bending",
"lighting": {
"type": "studio HDRI",
"intensity": "very high",
Tool | URL |
---|---|
aiCoder | aicoderproject.com/ |
Cline | github.com/cline/cline |
Cursor | cursor.com |
Gemini Code Assist | codeassist.google |
GitHub Copilot | github.com/features/copilot |
Kilo Code | kilocode.ai |
PearAI | trypear.ai |
qodo | qodo.ai |
#!/bin/bash
# Get full path to npx
FULL_PATH_TO_NPX=$(which npx)
# Extract ASDF shims directory (remove '/npx' from the path)
PATH_TO_ASDF_SHIMS_DIR=$(dirname "$FULL_PATH_TO_NPX")
# Get full path to asdf
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
# Install ASDF version manager and plugins | |
if ! command -v asdf &> /dev/null; then | |
brew install asdf | |
echo -e "\n. $(brew --prefix asdf)/libexec/asdf.sh" >> ${ZDOTDIR:-~}/.zshrc | |
fi | |
asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git || true | |
asdf plugin add python || true | |
asdf plugin add rust || true |
# create a new project
poetry new {project_name}
# add a package
poetry add {package_name}
# install dependencies
poetry install
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 json | |
import subprocess | |
# This script requires gh command if you don't have it, you need to install. | |
# Run the gh command and get the output | |
user_id = input('Enter your github id: ') | |
repo_owner = input('Enter repo owner: ') | |
repo = input('Enter repo name: ') | |
limit = input('Enter limit num: ') |
#!/bin/bash
folder_path="./protocols"
output_file="./simulate_output.txt"
for file_path in $folder_path/*.py; do
echo "run $file_path" >> "$output_file"
output=$(opentrons_simulate "$file_path")
echo "$output" >> "$output_file"
when running wsl, wsl creates resolv.conf and add useless nameserver. the following is to prevent that.
sudo rm /etc/resolv.conf
sudo zsh -c 'echo "nameserver 8.8.8.8" > /etc/resolv.conf'
sudo zsh -c 'echo "[network]" > /etc/wsl.conf'
sudo zsh -c 'echo "generateResolvConf = false" >> /etc/wsl.conf'
NewerOlder