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
{ | |
"key": "cmd+enter", | |
"command": "runCommands", | |
"args": { | |
"commands": [ | |
{ | |
"command": "git.stageAll" | |
}, | |
{ | |
"command": "cursor.generateGitCommitMessage" |
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
# Frontend Design Guideline | |
This document summarizes key frontend design principles and rules, showcasing | |
recommended patterns. Follow these guidelines when writing frontend code. | |
# Readability | |
Improving the clarity and ease of understanding code. |
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 requests | |
import csv | |
import json | |
import time | |
import argparse | |
from urllib.parse import urlencode | |
def scrape_bluer_restaurants(output_file="bluer_restaurants.csv"): | |
""" | |
Scrape restaurant data from Bluer API and save to CSV file |
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 { createClient } from "https://esm.sh/@supabase/[email protected]"; | |
import { generateObject, generateText, Output } from "npm:ai"; | |
import { openai } from "npm:@ai-sdk/openai"; | |
import { z } from "npm:zod"; | |
const TitleOutput = z.object({ | |
summary: z.string().describe( | |
"대화에서 다룬 내용을 바탕으로 간단한 요약을 알려주세요", | |
), | |
partner: z.string().describe( |
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
<select name="choice"> | |
<option value="banana">바나나</option> | |
<option value="apple">사과</option> | |
<option value="orange">오렌지</option> | |
</select> |
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
<style> | |
.container { | |
margin: 1em 0; | |
border: 3px dotted #4a4a4a; | |
padding: 0.5em; | |
background-color: #c2edc8; | |
display: flex; | |
flex-direction: row; | |
} |
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
<style> | |
.container { | |
margin: 1em 0; | |
border: 3px dotted #4a4a4a; | |
padding: 0.5em; | |
background-color: #c2edc8; | |
display: flex; | |
flex-direction: row; | |
} |
NewerOlder