일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flutter
- urllib
- 함수
- PyQt5
- MySQL
- node.js
- Excel
- IOS
- ubuntu
- 맛집
- Unity
- MS-SQL
- javascript
- mssql
- 리눅스
- 날짜
- 유니티
- Linux
- swift
- GIT
- tensorflow
- python
- 다이어트
- PER
- 라즈베리파이
- sqlite
- PyQt
- pandas
- ASP
- port
목록2024/10 (4)
아미(아름다운미소)
result = int(value) if isinstance(value, int) or (isinstance(value, str) and value.isdigit()) else 0
final String apiKey = "my_api_key"; // API 키 를 공통변수로 사용하려면lib/├── config/│ └── globals.dart├── main.dart└── other_files.dart // lib/globals.dartlibrary my_project.globals;final String apiKey = "fc1e3ad82010475381daf9846e627fdd";// lib/main.dartimport 'package:flutter/material.dart';import 'globals.dart' as globals;void main() { runApp(MyApp());}class MyApp extends StatelessWidget { @override..
my_fastapi_app/│├── main.py├── auth.py└── routers/ └── secure.pyauth.py# auth.pyfrom fastapi import Depends, HTTPExceptionfrom fastapi.security import APIKeyHeaderAPI_KEY = "your_api_key_here"api_key_header = APIKeyHeader(name="X-API-Key")def verify_api_key(api_key: str = Depends(api_key_header)): if api_key != API_KEY: raise HTTPException(status_code=403, detail="Forbidden")routers..
[✓] Xcode - develop for iOS and macOS (Xcode 16.0) 에러시필수 패키지 설치: Ruby를 빌드하는 데 필요한 패키지설치brew install openssl readline libyaml zlibRVM 업데이트: RVM을 최신 버전으로 업데이트rvm get stable환경 변수 설정: Ruby 설치 시 OpenSSL 경로를 지정해줄 수 있습니다. 아래 명령어로 설치를 시도해 보세요rvm install 3.2.3 --with-openssl-dir=$(brew --prefix openssl)cocoapods installsudo gem uninstall cocoapods && sudo gem install cocoapods