[excel]EXCEL用函數統計不重複項目個數

參考網址:https://kknews.cc/zh-tw/tech/prpbq2.html

公式=SUMPRODUCT(1/COUNTIF($B$3:$B$16,$B$3:$B$16))


發表於 Windows系統, 軟體使用 | 發表迴響

Windows 10 now runs on the Raspberry Pi 4 and 3

參考網址:https://www.windowslatest.com/2020/02/09/heres-how-windows-10-runs-on-raspberry-pi-4-and-3/

https://www.worproject.ml/downloads

發表於 Linux系統, Windows系統 | 發表迴響

[bat]批次檔轉成exe Quick Batch File Compiler

參考網址:https://www.abyssmedia.com/quickbfc/

Main Features:

  • Creating a 32-bit or 64-bit applications in a single click.
  • Save/Load Project Options
  • Open context help for batch commands by pressing F1 in editor
  • Embedded files: you can embed files to the compiled executable. This files will be decompressed before script execution and deleted on exit.
  • Can create Ghost applications without DOS window.
  • Allows you to select application icon
  • Allows you to edit Version Info for EXE-file.
  • Protects contents of a batch file from the non-authorized change
  • Hides contents of a batch file from viewing.
  • It is not necessary to be the programmer to create the program
  • It may be useful for installation and automation tasks
  • Syntax highlighting of commands inside built-in editor
  • Can compile any batch file to exe format compatible with XP/Vista/7/8/10.
  • All compiled files royalty-free
發表於 Windows系統, 軟體使用 | 發表迴響

[portable]可攜式軟體下載

參考網址:https://portableapps.com/

大陸網站:https://www.portablesoft.org/

 

發表於 軟體使用 | 發表迴響

uwp:如何使用Powershell為windows 10 Universal應用程式建立桌面快捷方式?

參考網址:Codebug

用powershell 為makecode app 建立捷徑
 

$TargetPath =  "shell:AppsFolder\MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar!App"
$ShortcutFile = "$Home\Desktop\MakeCodeAPP.lnk"
$WScriptShell = New-Object -ComObject WScript.Shell
$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)
$Shortcut.TargetPath = $TargetPath
$Shortcut.Save()

 

get-appxpackage > d:\application_list.txt 可以得到 APP名稱列表
 

Name              : MicrobitEducationalFounda.196216C47839B
Publisher         : CN=DA0852B7-E38D-4F10-9429-7A96575322FD
Architecture      : X64
ResourceId        : 
Version           : 1.1.0.0
PackageFullName   : MicrobitEducationalFounda.196216C47839B_1.1.0.0_x64__e88r6s0b2swar
InstallLocation   : C:\Program Files\WindowsApps\MicrobitEducationalFounda.196216C47839B_1.1.0.0_x64__e88r6s0b2swar
IsFramework       : False
PackageFamilyName : MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar
PublisherId       : e88r6s0b2swar
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

找到PackageFamilyName : MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar 在後面加上「!App」

發表於 Windows系統 | 發表迴響

[windows]建立捷徑的bat檔CreateShortcut.bat

@ECHO OFF
TITLE 建立 Xshell & Xftp 捷徑
mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""Desktop"") & ""\Xshell6Portable.lnk""):b.TargetPath=""%~dp0Xshell6Portable.exe"":b.WorkingDirectory=""%~dp0"":b.Save:close")
mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""Desktop"") & ""\Xftp6Portable.lnk""):b.TargetPath=""%~dp0Xftp6Portable.exe"":b.WorkingDirectory=""%~dp0"":b.Save:close")
echo Xshell & Xftp 捷徑已建立
pause

這個檔案必需存成bat檔才能正常執行,複製到CMD的環境執行會發生問題(%~dp0  會發生錯誤)。

快閃人生 【批次檔】%CD% 與 %~dp0

%CD%:Current Directory, 當前工作目錄位置
%~dp0:批次檔存在的目錄位置
關於%~dp0其實是%0參數的衍伸用法(可以使用CALL /?查閱詳細說明)
首先執行下面例子先看看結果:
 


@ECHO OFF
CLS

ECHO %%0 = %0
ECHO %%~d0 = %~d0
ECHO %%~p0 = %~p0
ECHO %%~n0 = %~n0
ECHO %%~x0 = %~x0

CALL /?的說明頁面中, 得知在參數%n(%0, %1, … %9)之間加了波浪符號(~)與相關的修飾字詞後, 就會有擴充的支援。
 

  1. %0:第0個參數, 表示批次檔本身。
  2. %~d0:Dirver, 批次檔存在的磁碟機代號。
  3. %~p0:Path, 批次檔的路徑位置(不包含磁碟機代號)。
  4. %~n0:批次檔的檔案名稱。
  5. %~x0:批次檔的副檔名。
  6. 所有的修飾字詞可以混搭使用, 所以%~dp0即是批次檔所在的完整路徑。
  7. 修飾字詞還有~f, ~a, …等, 請參考程式說明頁面。
發表於 Windows系統 | 發表迴響

[portablesoft]綠色便攜軟件

參考網址:https://www.portablesoft.org/

發表於 Windows系統, 軟體使用 | 發表迴響

分辨 Linux 系統是 32 位元還是 64 位元的方法

參考網址:GTW

uname -m

如果是 32 位元的系統,就會顯示 i686 或 i386,而如果是 64 位元的系統就會顯示 x86_64

發表於 Linux系統 | 發表迴響

[tello]DJI Tello 開箱.迷你空拍機

參考網址:http://www.cg.com.tw/DJITello/

發表於 程式設計 | 發表迴響

[碁峯]gotop書籍範例下載

網址:http://books.gotop.com.tw/download/AEZ020100

Scratch 3.0 多媒體遊戲設計 & Tello無人機  http://gogo123.com.tw/?page_id=10787
https://gogo123.com.tw/scratch-3-0/

 

發表於 程式設計, 軟體使用 | 發表迴響