Coding 썸네일형 리스트형 Chapter 1 미니프로젝트 회고 | 내일배움캠프 Node.js 4기 팀원 소개 페이지 https://youtu.be/hdRjzMIEp_o?si=IQ8Y6U6Chjxszdu6 https://github.com/sjwoo1999/fc-nbc-first GitHub - sjwoo1999/fc-nbc-first Contribute to sjwoo1999/fc-nbc-first development by creating an account on GitHub. github.com 회고 [기술] Keep - 기본에 충실한 것 (영우님) - Bard 적극 활용해서 개발하고 디버깅하고 했던 것이 많은 도움이 되었다. (성종) - 자신이 하고 있는 부분을 성실히 맡아 하고 부족하다 생각하는 부분 공부하기 (승원님) Problem -기본에만 충실하고 다른 기능을 시도해보지 않은 것, 와이어.. 더보기 TIL | #18 | Routine Mate | 23.12.16.(토) 23.12.16.(SAT).TIL. Routine Mate Routine Mate import React, { useState } from "react"; import { BrowserRouter, Route, Switch } from "react-router-dom"; const App = () => { const [isBackButtonVisible, setIsBackButtonVisible] = useState(true); return ( ); }; const HomePage = ({ isBackButtonVisible }) => { return ( 일일 목표 IP: 192.168.0.1 시간: 9:41 setIsBackButtonVisible(false)} > 뒤로가기 ); }; const Dai.. 더보기 TIL | #17 | React Native | 23.12.15.(금) 23.12.15.(FRI).TIL. React Native React Native // Import 필요한 React Native 컴포넌트 및 라이브러리 import React, { useState, useEffect } from "react"; import { View, Image, Button, Text } from "react-native"; import AsyncStorage from "@react-native-async-storage/async-storage"; import { useNavigation } from "@react-navigation/native"; // 로고 이미지 경로 const logoImagePath = require("./path/to/your/logo.png"); con.. 더보기 TIL | #16 | React Native | 23.12.14.(목) 23.12.14.(THU).TIL. React Native React Native import React, { useState, useEffect } from "react"; import { SafeAreaView, StyleSheet, Text, View, Button, } from "react-native"; const App = ({ navigation }) => { const [isLoggedIn, setIsLoggedIn] = useState(false); useEffect(() => { // 로그인 여부를 확인합니다. setIsLoggedIn(true); }, []); if (!isLoggedIn) { return ( LifePlan Hub navigation.navigate("Login")}.. 더보기 TIL | #15 | Tesseract OCR / Google Calendar | 23.12.13.(수) 23.12.13.(WED).TIL. Tesseract OCR / Google Calendar Tesseract OCR / Google Calendar import os import cv2 import pytesseract import googleapiclient.discovery # 이미지 파일의 경로를 입력합니다. image_path = "/path/to/image.jpg" # 이미지 파일을 읽고 텍스트를 추출합니다. text = pytesseract.image_to_string(cv2.imread(image_path)) # 텍스트에서 일정 또는 일시를 추출합니다. events = [] for line in text.splitlines(): # 일정을 추출합니다. if "일정" in line: even.. 더보기 TIL | #14 | NAVER CLOVA OCR / SUMMARY - Local | 23.12.12.(화) 23.12.12.(TUE).TIL. NAVER CLOVA OCR / SUMMARY - Local NAVER CLOVA OCR / SUMMARY - Local import requests import json import nltk def get_text_from_image(image_path): # Naver Clova OCR API URL url = "https://openapi.naver.com/v1/vision/ocr" # 요청 헤더 headers = { "X-Naver-Client-Id": "YOUR_CLIENT_ID", "X-Naver-Client-Secret": "YOUR_CLIENT_SECRET", } # 요청 데이터 data = { "image": image_path, } # 요청 respo.. 더보기 TIL | #13 | NAVER CLOVA SUMMARY API | 23.12.11.(월) 23.12.11.(MON).TIL. NAVER CLOVA SUMMARY API NAVER CLOVA SUMMARY API import requests import uuid import time import base64 import json from google.colab import drive drive.mount('/content/drive') api_url = '' secret_key = '' image_file = '' with open(image_file, 'rb') as f: file_data = f.read() request_json = { 'images': [ { 'format': 'jpg', 'name': 'demo', 'data': base64.b64encode(file_data).dec.. 더보기 TIL | #12 | NAVER CLOVA OCR | 23.12.10.(일) 23.12.10.(SUN).TIL. NAVER CLOVA OCR NAVER CLOVA OCR import requests import uuid import time import base64 import json from google.colab import drive drive.mount('/content/drive') api_url = 'api_url' secret_key = 'secret_key' image_file = 'image_file' with open(image_file, 'rb') as f: file_data = f.read() request_json = { 'images': [ { 'format': 'jpg', 'name': 'demo', 'data': base64.b64encode(fil.. 더보기 이전 1 ··· 14 15 16 17 18 19 20 ··· 39 다음