| 名詞 | 用途 | 備註 |
This file contains 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
var button; | |
/*宣告按鈕*/ | |
boardReady({board 'Smart', url: '172.20.10.6'}, function (board) { | |
/*smart 用websucket 連線*/ | |
board.systemReset(); | |
board.samplingInterval = 50; | |
button = getButton(board, 4); | |
/*上拉按鈕開關=4*/ | |
var btnGameNpcShow_ = document.getElementById("npcshow"), | |
This file contains 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
<div id="maindiv"> | |
<div id="div01">1</div> | |
<div id="div02">2</div> | |
<div id="div03">3</div> | |
<div id="div04">4</div> | |
<div id="div05">5</div> | |
</div> |
This file contains 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
@media screen and (min-width:481px){ | |
#div03 { | |
width: calc((100% - 10px)/2); | |
height: 300px; | |
float: left; | |
} | |
#div05 { | |
clear: both; | |
} | |
#div04 { |
https://ithelp.ithome.com.tw/articles/10232315
import numpy as np
import tensorflow as tf
import matplotlib.pyplot as plt
%matplotlib inline
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<!-- # 載入任務 | |
launchctl load ~/Library/LaunchAgents/com.larry.launchctl.plist | |
# 移除任務 | |
launchctl unload ~/Library/LaunchAgents/com.larry.launchctl.plist | |
# 手動執行任務 |
The following is a list of all the programming questions that I had solved through middle school and high school.
I programmed these questions in Java, but with slight modifications, these can also be done in Python or any other language. These are meant to improve your concepts and build a programming logic, and thereby strengthen your foundations.
These were lying in a .docx
file on my system. I have compiled them into a more readable and widely accepted format. Some formatting
issues might still be present, which I intend to fix as I find them. On the same note, if any question does not make sense,
feel free to post a comment and I will cross-check with the .docx
file.
This file contains 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
{ | |
"台北市": { | |
"中正區": "100", | |
"大同區": "103", | |
"中山區": "104", | |
"松山區": "105", | |
"大安區": "106", | |
"萬華區": "108", | |
"信義區": "110", | |
"士林區": "111", |
This file contains 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
# link: https://sujingjhong.com/posts/how-to-deploy-hugo-automatically-with-github-actions/ | |
# author: lisez <[email protected]> | |
# 參照原作著提供的流程並修改成自己適用版本 | |
name: Deploy Hugo site to Pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: |