Skip to content

Instantly share code, notes, and snippets.

View testkun08080's full-sized avatar
:octocat:
Chill in onsen now

testkun08080 testkun08080

:octocat:
Chill in onsen now
View GitHub Profile
@testkun08080
testkun08080 / qUranai_ionq.sh
Last active June 18, 2025 08:22
Ionq_api_uranai
#!/bin/zsh
# you might need to call `chmod +x qUranai_ionq.sh`
# if you want to set the IONQ_API_KEY environment variable before run this script, you can do it like this:
# export IONQ_API_KEY="your_api_key"
set -e
# 🌟 必要な準備
# APIキーの確認
if [[ -z "$IONQ_API_KEY" ]]; then
@testkun08080
testkun08080 / quickSetUp_ReactVite.sh
Created June 16, 2025 08:20
Quick Setup react-vite-tailwind app
#!/bin/bash
# Get the project name from the argument, default to "react-vite-app"
PROJECT_NAME=${1:-react-vite-app}
REPO_NAME=${2:-repo-name}
USER_NAME=${3:-user-name}
# GitHub Pages URL
HOMEPAGE_URL="https://${USER_NAME}.github.io/${REPO_NAME}/"
@testkun08080
testkun08080 / setupFastAPI_On_Docker.sh
Created June 16, 2025 08:17
Setting up Docker for an existing FastAPI project...
#!/bin/bash
set -e
echo "Setting up Docker for an existing FastAPI project..."
# List directories in the current folder
echo "Select a directory from the list below:"
select DIR in */; do
if [ -n "$DIR" ]; then
@testkun08080
testkun08080 / quickFastAPI.sh
Created June 16, 2025 08:15
QuickSetupFastAPI in your local pc
#!/bin/bash
set -e
echo "Setting up a FastAPI project..."
# Input for project name
echo "Enter the project name:"
read -r PROJECT_NAME
# Making the project directory