參考網址:clarence
Microsoft Office 2024
專業增強版 – 繁體中文
Microsoft Office 2021
專業增強版 – 繁體中文
https://www.gdaily.org/34397/office-2024-download-installer
多功能集於一身的 Office 部署工具。
office tool plus
使用GUI介面工具安裝 Office 2024
參考網址:clarence
https://www.gdaily.org/34397/office-2024-download-installer
多功能集於一身的 Office 部署工具。
office tool plus
使用GUI介面工具安裝 Office 2024
參考網址:https://www.freedidi.com/16532.html
https://www.youtube.com/watch?v=vRCV38wrl9s
1. office 软件部署工具:https://www.microsoft.com/en-us/download/details.aspx?id=49117
2. office 版本自定义工具:https://config.office.com/deploymentsettings
3.基于KMS的 GVLK:https://learn.microsoft.com/zh-cn/deployoffice/vlactivation/gvlks
下载命令:
setup /download config.xml
安装命令:
setup /configure config.xml
最后启动命令:
cd C:\Program Files\Microsoft Office\Office16
cscript ospp.vbs /sethst:kms.03k.org
cscript ospp.vbs /act
注意:如果你安装的是32位版本,那么启动命令第一个要改成:cd C:\Program Files (x86)\Microsoft Office\Office16
Jeditable是一個非常好用的外掛,可以即時編輯資料庫欄位資料。
但是有個小缺點,就是畫面上出現「Click to edit」提醒字元太佔空間。
說明文件中指出可以修改tooltip <script type="text/javascript"> $(document).ready(function() { $('.jedit').editable('update_score_bell.php', { type : 'textarea', submit : 'OK', indicator : '正在儲存中', tooltip : '點擊修改' }); }); </script> 但修改這兒似乎只能改alt時的說明文字 要修改表單中的文字得直接修改jeditable.js文件最後約537行 placeholder: 'Click to edit', 改成 placeholder: 'Edit',
查看themes/print.css #menu-left { display: none; } 查看網頁原始檔 <section class="mt-5 min-vh-100" > <div class="container-fluid"> <div class="row flex-nowrap"> <div class="col-auto col-md-3 col-xl-2 px-sm-2 px-0 bg-white" > <div class="d-flex flex-column align-items-center align-items-sm-start px-3 pt-2 text-white "> <ul class="nav nav-pills flex-column mb-sm-auto mb-0 align-items-center align-items-sm-start" id="menu"> 比對其它網站網頁原始檔 第4行沒有給id,加入就可以了 <div class="col-auto col-md-3 col-xl-2 px-sm-2 px-0 bg-white" id="menu-left">
要測試獎狀參數時,需有一筆測試用的成績資料。以前都是在local端模擬輸入一筆成績,有些麻煩。
想到一個方法,給一筆模擬的資料就可以了。
修改work/award_config.php加入「測試列印樣張」鏈結 <caption >獎狀排版設定<br>(螢幕解析度約為96DPI,37.8pixels/cm) <a href="../admin/adm_print_score.php?act=test" target="_blank">測試列印樣張</a></caption > 修改admin/adm_print_score.php 當傳入act=test時給一筆模擬的資料 if($_GET['act']=='test') { $user[0]['group_name']="國小男童五年級組"; $user[0]['group_engname']="Primary school Fifth grade boy group"; $user[0]['item_name']="個人賽"; $user[0]['item_engname']="Individual race"; $user[0]['ord_id']="第一名"; $user[0]['eng_ord_id']="First"; $user[0]['player_name']="李宸豪"; $user[0]['player_engname']="Li Chen-hao"; $user[0]['gov_name']="永康國小"; $user[0]['gov_engname']="Tainan Municipal Yongkang District Yongkang Elementary School"; $user[0]['gov_allname']="臺南市永康區永康國民小學"; $user[0]['score']=""; }else{ $user = get_main_score($_GET['group_id'] ,$_GET['item_id'] ,$play_group_name1['detail'][$_GET['group_id']] , 1,0,$rope) ; }
參考網址:https://www.driverscape.com/
Windows Driver Download Center
一些老筆電在官方網站已經找不到驅動程式,可以到這兒來找找。
適用民俗體育,如果有併組情形時,在獎狀資料取得時提醒修正組別名稱。
$message="有拆、併組情形,請修正列印用-組別名稱!!^^^";
select * from modify_list where group_id_tg=' $_POST[group_id]' and item_id_tg= '$_POST[item_id]' group by group_id_tg,item_id_tg 影響的檔案 admin\adm_print_get.php templates\admin\adm_get_print.htm templates\admin\adm_get_print_edit.htm
參考網址:https://www.youtube.com/watch?v=b_Cyw2qbIQM
網頁連結 AppSheet https://www.appsheet.com/
練習檔下載 載點一:https://tinyurl.com/22ekswt2 載點二:https://share.weiyun.com/DVatffM6
參考網址:https://hackmd.io/@JohnnyTsai/ry3xUAAKD
sudo apt-get update sudo apt-get upgrade sudo apt-get install openssh-server sudo service ssh restart # 安裝 git sudo apt-get install git-core # 新增專用群組 gitgroup sudo groupadd gitgroup # 新增 gituser 並指定成 gitgroup & 設定密碼 sudo useradd -s /bin/bash -g gitgroup -m -d /home/gituser gituser sudo passwd gituser # 建立 git repository資料位置 sudo mkdir -p /opt/gitRepository # 變更擁有者,主要是為了指定群組 sudo chown gituser:gitgroup -R /opt/gitRepository sudo chgrp -R gitgroup /opt/gitRepository #切換到 gituser 帳號 # 建立專案資料夾並初始化 cd /opt/gitRepository mkdir project_name.git cd project_name.git git init --bare --shared #推送本地專案到遠端倉庫 git remote add origin gituser@localhost:/opt/gitRepository/project_name.git git push -u origin master