1. Using MinGW-w64
2. Using Cigwin
- Download MinGW-w64 in sourceforge.
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend | |
| xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="windowsPE"> | |
| <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" | |
| xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <SetupUILanguage> | |
| <UILanguage>en-US</UILanguage> | |
| </SetupUILanguage> |
| #include <iostream> | |
| #include <vector> | |
| int main() { | |
| int n; | |
| std::cin >> n; | |
| std::vector<int> apple; | |
| apple.push_back(0); | |
| int sum = 0, time = 0; | |
1. Using MinGW-w64
2. Using Cigwin
| import mediapipe as mp # type: ignore | |
| BaseOptions = mp.tasks.BaseOptions | |
| GestureRecognizer = mp.tasks.vision.GestureRecognizer | |
| GestureRecognizerOptions = mp.tasks.vision.GestureRecognizerOptions | |
| VisionRunningMode = mp.tasks.vision.RunningMode | |
| options =GestureRecognizerOptions( | |
| base_options=BaseOptions(model_asset_path='gesture_recognizer.task'), | |
| running_mode=VisionRunningMode.VIDEO) |
| import ccxt | |
| import time | |
| # Bitget API 키 설정 | |
| api_key = 'YOUR_API_KEY' | |
| api_secret = 'YOUR_API_SECRET' | |
| password = 'YOUR_PASSWORD' | |
| # Bitget 거래소 객체 생성 | |
| exchange = ccxt.bitget({ |
| // Using p5.js | |
| function roundedBox(length, width, height, radius) { | |
| // Draw walls (three orthogonal boxes) | |
| box(length, width - radius, height - radius); | |
| box(length - radius, width, height - radius); | |
| box(length - radius, width - radius, height); | |
| // Draw 8 corner spheres | |
| for (let xSign = -1; xSign <= 1; xSign += 2) { | |
| for (let ySign = -1; ySign <= 1; ySign += 2) { |
| <!DOCTYPE html> | |
| <html lang="kr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>플레이리스트 추천기</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet"> | |
| <style> |