This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXT_ID= | |
WEB_EXT_API_KEY= | |
WEB_EXT_API_SECRET= | |
OUTPUT_FILENAME= |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="zh-TW"> | |
<head> | |
<title>期末報告</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/normalize.css" /> | |
<script> | |
let cwbToken = ""; // 氣象局 API 之權杖須自行取得 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <wchar.h> | |
#include <windows.h> | |
void enableAnsiSqeuence(){ | |
HANDLE hStdin; | |
hStdin = GetStdHandle(STD_INPUT_HANDLE); | |
/* 參考: https://docs.microsoft.com/en-us/windows/console/setconsolemode */ | |
const int ENABLE_VIRTUAL_TERMINAL_INPUT = 0x0200; |