일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- gitignore
- Display
- Level1
- AI 5기
- itertools
- googleappscript
- cte
- 프로그래머스
- target
- WIL
- with\
- 함수성능평가
- 내일배움캠프
- 함수실행시간
- vscode
- venv
- iterable
- googlesheet
- git #github #내일배움캠프
- AI
- python
- 알고리즘
- Iterator
- time()
- 우선순위
- onClick
- sql
- A태그
- position
- 가상환경
- Today
- Total
목록분류 전체보기 (87)
05의 개발 계발
GoalGithub repos url 이 주어졌을 때, GAS를 사용해 JS로 코딩하여 (public / private) 공개여부를 파악 할 수 있다.1) 문제점 (Problem)제출된 Github repos url 중 private(비공개) 처리 되어 확인이 불가한 경우, public(공개) 변환 조치가 필요했다.직접 클릭해서 확인 한다는 것은... 용납할 수 없게 너무나 비효율적인 일이기에 자동화를 시도하였다.2) 시도해본 것들 (Try)▶시도1우리의 친구 wrtn(뤼튼) 과 진중한 대화를 주고 받았다.한번에 답을 주진 못했지만, JS로 API 통신을 해봤기에 뼈대에서 조금 수정해서 시트에 적용시켰다.3) 해결 (Solution)Google App Script 로 해결function checkRepo..
알아두면 쓸모있는 호기심간혹 복사기능을 막아둔 웹페이지가 있다.그럴 땐 위 처럼 Disable JavaScript 를 체크하면 일시적으로 복사가 되는 것은 우리는 익히 안다.그럼 왜? 이것이 가능한 것일까?궁금하면 검색해봐야지!그렇다. 사실 이미 예상했듯이, 복사 방지 기능이 JS(JavaScript) 로 구현되어있기 때문이다.아래는 일반적으로 사용하는 복사방지 JS 코드이다.//contextmenu 이벤트 비활성화:document.addEventListener('contextmenu', function(event) { event.preventDefault();});//copy 이벤트 방지document.addEventListener('copy', function(event) { event.p..
SQL이란?SQL(Structured Query Language)은 데이터베이스 관리 시스템(DBMS)에서 데이터를 관리하고 조작하기 위해 사용되는 표준 언어입니다. SQL은 관계형 데이터베이스에서 데이터를 조회, 삽입, 업데이트, 삭제하는 등의 작업을 수행할 수 있도록 설계되었습니다.SQL은 여러 데이터베이스 시스템에서 사용되며, 대표적으로 MySQL, PostgreSQL, Oracle, Microsoft SQL Server 등이 있습니다.SQL = DB에서 Data를 조작하기 위해 사용하는 언어1. 데이터 정의 언어(DDL: Data Definition Language) - 데이터베이스 구조를 정의하거나 수정--CREATE: 데이터베이스, 테이블, 인덱스 등을 생성합니다.CREATE TABLE Use..
1. Monitorian : 화면밝기조절 툴, 디바이스 자체에 접근 https://www.microsoft.com/store/productId/9NW33J738BL0?ocid=pdpshare Monitorian - Official app in the Microsoft Store Monitorian is a desktop tool to adjust the brightness of multiple monitors with ease. The user can change the brightness of monitors, including external ones, either individually or in unison. In addition, the user can change the adjustable r..
1. FxSound : 음질개선 + 스피커 전환 단축키 제공(Ctrl + Alt + W) https://www.fxsound.com/ Boost Volume and Sound Quality on Your PC - FxSound This new software boosts sound quality, volume, clarity and bass on your PC. FxSound will make your audio jump out of your speakers. www.fxsound.com 프리셋도 발행일 기준, 현재 무료로 풀려있으니 취향에 맞게 다운받아 쓰도록 하자! https://www.fxsound.com/presets Presets - FxSound Download bonus presets for..
1. Snipaste : 캡쳐 + 스티커 + history https://youtube.com/shorts/ba4i93-GgQc?si=WFiEYBDsglgdEvGU https://www.snipaste.com/ Snipaste Boost your productivity with Snipaste Snipaste is a simple but powerful snipping tool, and also allows you to pin the screenshot back onto the screen. Download and start the application, press F1 to start snipping, then press F3 to paste it as a floating w www.snipaste.c..
# 숫자카드 N = int(input()) # 가진 카드 수 cards = list(map(int,input().split())) # 가진 카드들 - 1) list타입으로 탐색 - 시간초과 cards = set(map(int,input().split())) # 가진 카드들 - 2) set타입으로 탐색 - 464ms M = int(input()) # 확인 카드 수 checks = list(map(int,input().split())) # 확인 카드들 print(' '.join('1' if check in cards else '0' for check in checks)) 전체코드 더보기 # https://www.acmicpc.net/problem/10815 # 숫자카드 # 실버5 ''' 문제 숫자 카드는 정..
1.알고리즘 문제 풀이 [내일배움캠프 AI/페어프로그래밍] - [페어프로그래밍] 230518 소수찾기 Lv.1 | for if range [페어프로그래밍] 230518 소수찾기 Lv.1 | for if range 소수찾기 페어프로그래밍 결과 코드 # =======초기 코드========== def solution(n): def prime_number(number): for i in range(2,int(number**0.5)+1): if number % i == 0: return False return True answer = 0 for num in range(2,n+1): if prime_num 05-archives.tistory.com [페어프로그래밍] 230518 숫자 문자열과 영단어 Lv.1 | ..
숫자 문자열과 영단어 페어프로그래밍 결과 코드 # 초기 코드 def solution(s): num_list= ["zero","one","two","three","four","five","six","seven","eight","nine"] for i,num in enumerate(num_list): if num in s: s = s.replace(num,str(i)) return int(s) +테스트용 전체 코드 더보기 import os os.system("cls") # https://school.programmers.co.kr/learn/courses/30/lessons/81301 # 초기 def solution(s): num_list= ["zero","one","two","three","four","f..
소수찾기 페어프로그래밍 결과 코드 # =======초기 코드========== def solution(n): def prime_number(number): for i in range(2,int(number**0.5)+1): if number % i == 0: return False return True answer = 0 for num in range(2,n+1): if prime_number(num): answer += 1 return answer +테스트용 전체 코드 더보기 # https://school.programmers.co.kr/learn/courses/30/lessons/12921 import os, time os.system("cls") # 1~n 사이의 숫자를 반복문으로 분리 # 소수인지..
1) 문제점 (Problem) WARNING:absl:`lr` is deprecated in Keras optimizer, please use `learning_rate` or use the legacy optimizer, e.g.,tf.keras.optimizers.legacy.SGD. 경고문은 기능은 작동하나, error를 야기할 위험 요소가 있을 때 발생한다. TensorFlow 를 v1 버젼으로 사용한 코드를 사용중 위와 같은 경고문이 발생했다. 2) 시도해본 것들 (Try) ▶GPT 활용 3) 해결 (Solution) lr → learning_rate 로 변경 # optimizer = tf.keras.optimizers.Adam(lr=0.001) # ↓ optimizer = tf.keras.op..