일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 내돈내산
- 프로그래머스코딩테스트
- 알고리즘해시
- 제주맛집
- 강남역맛집
- 인덕원카페
- 코딩테스트
- 인덕원역맛집
- 아마존릿코드
- 코테사이트
- 프로그래머스
- 인덕원고기
- 구글릿코드
- 삼성맛집
- 안양맛집
- 알고리즘
- 삼성역맛집
- 제주볼거리
- 개발자취업
- 안양고기
- 인덕원존맛
- 제주놀거리
- 인덕원맛집
- 평촌카페
- 개발자알고리즘
- 코딩테스트사이트추천
- 애플릿코드
- 릿코드
- 코딩테스트사이트
- 인덕원고기집
- Today
- Total
목록분류 전체보기 (65)
민여위-

1. Bot의 이미지 첨부 (discord bot send image) @bot.command(aliases = ['재롱부려줘']) async def Fun(ctx): await ctx.send(file=discord.File('E:/DiscordGalbiBot/Images/GalbiJaeRong.jpg')) 2. Bot의 link 이미지 첨부 (discord bot send image link url) @bot.command(aliases = ['누구세요']) async def WhoAreYou(ctx): async with aiohttp.ClientSession() as session: async with session.get('https://i.ytimg.com/vi/0H8PR0NEQUE/hqdef..

1. Python 개발환경 세팅 - IDE는 VisualStudio Code를 활용합니다. - 왼쪽 메뉴에서 네모 박스 모양의 확장자 설치 탭 클릭 > Python 검색 > 아래 표시된 2개의 extensions 설치 2. Discord Package 설치 - 터미널 창에 'pip install discord' 입력 3. Bot을 활성화 시키기 위한 코드 작성 import discord, asyncio, os from discord.ext import commands game = discord.Game("Galbi Bot") bot = commands.Bot(command_prefix='!', status=discord.Status.online, activity=game) @bot.command(alia..

1. Discord Developer Portal 에서 Bot 만들어주기 - https://discord.com/developers Discord Developer Portal — API Docs for Bots and Developers Integrate your service with Discord — whether it's a bot or a game or whatever your wildest imagination can come up with. discord.com - New Application > Bot 이름 입력 > Bot의 기본정보 입력 > 생성 성공! (이미지를 업로드하면 해당 페이지 저장에 시간이 꽤 걸린다 ㅠ) - 여담으로 나는 아래 경고 문구가 계속 떴었는데 디스코드 이메일 인증을..

가격 : 런치 기준 1인 120,000원 요약 : 그냥 다 맛있었음. 뭐 하나 흠 잡을 곳이 없었다ㅠ (원래 나는 다 잘 먹지만..) 그 중에 제일 맛있었던 건 안심 샤토브리앙.. 이건 따로 밀키트 형태로 파는게 있어서 꼭 다시 주문해서 집에서 구워 먹을 거다ㅠㅠ 그리고 저 감태 김밥이 증말 미쳤음. 중간에 먹느라 까먹고 사진 안 찍거나 먹는 도중 찍은 것들이 있는데 여기는 진짜 또 꼭 가볼거다 최고 👍👍

가격 : 디너 기준 1인 150,000원 요약 : 약 26가지정도 맛볼 수 있고, 제일 맛있었던 건 살짝 구운 가리비에 우니크림소스 올려서 주셨던 게 제일 좋았다. 그리고 장어와 한치, 디저트도 정말 맛있었다. 스시는 개인적으로 좋아하는 새우 계열(단새우, 간장새우 등) 이 없어서 아쉬웠음. 오랜만에 올리는 글 ^~^ 사진이 너무 많아서 하나하나 달기에는 힘이 든다 ㅋㅋㅋㅋ 이런 가게는 사진으로 모든 걸 설명할 수 있으니까,,라는 위안으로 그냥 때려박음
1. 문제설명 You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 and nums2 into a single array sorted in non-decreasing order. The final sorted array should not be returned by the function, but instead be stored inside the array nums1. To accommodate this, nums1 has..
1. 문제설명 Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond the length of the original array are not written. Do the above modifications to the input array in place and do not return anything. Example 1: Input: arr = [1,0,2,3,0,4,5,0] Output: [1,0,0,2,3,0,0,4] Explanation: After calling your function, ..
1. 문제설명 Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. Example 1: Input: nums = [-4,-1,0,3,10] Output: [0,1,9,16,100] Explanation: After squaring, the array becomes [16,1,0,9,100]. After sorting, it becomes [0,1,9,16,100]. Example 2: Input: nums = [-7,-3,2,3,11] Output: [4,9,9,49,121] Constraints: 1