Quantcast
Channel: 簡睿隨筆
Viewing all 897 articles
Browse latest View live

[Windows] 抹除使用記錄的方法

$
0
0

有時因為共用電腦或有多個使用者帳號時,為保護隱私或資訊安全,可使用下列方法將使用記錄清理乾淨。

1. 清除系統剪貼簿

echo. | clip.exe

2. 清除剪貼簿管理工具內容

  1. 下載sqlite3.exe
  2. 建立刪除資料的 SQL 檔案(delete.sql)
delete from Main;
delete from Data;
  1. 執行SQL指令:
sqlite3 "C:\Program Files\Ditto\ditto.db" < delete.sql

3. 清除小畫家最新項目

reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List" /f /va

4. 清除系統最新項目

包含工作列右鍵的Jump List也一併刪除。

cd /d "%AppData%\Microsoft\Windows\Recent"
del *.* /s/q

5. 清除檔案總管暫存檔

cd /d %LocalAppData%\Microsoft\Windows\Explorer
del *.* /s/q

cd /d "%TEMP%"
del *.* /s/q

建立使用者登出指令碼

將上列指令建立成一個批次檔後:

  1. 在命令提示字元執行 gpedit (Global Policy Editor,本機群組原則編輯器)
  2. 使用者設定→Windows設定→指令碼→登出
  3. 瀏覽要執行的批次檔後儲存

登出後便自動執行清理操作。

▼ cleanup.bat
* https://gist.github.com/emisjerry/9da83c1a3f56cbc9e1e943337aa55820

解說影片

##

您可能也會有興趣的類似文章


[AHK#30] 一鍵下載圖片、儲存到特定資料夾

$
0
0

需求

用最快速、最簡單的方法將網頁上的圖片下載儲存到特定資料夾

作法

  1. 以Google Chrome瀏覽器比照人工操作的步驟:右鍵功能表→複製圖片位址(O)
  2. 使用AutoHotkey的UrlDownloadToFile

✅ UrlDownloadToFile說明
✅ 腳本原始檔1

✅ 腳本原始檔2

解說影片

##

您可能也會有興趣的類似文章

Google Keep(網頁)進階操作

$
0
0

Google Keep是很方便的資料蒐集工具,舉凡各類構想、紀錄、待讀的網頁連結、待辦事項等,都可以用Keep來快速記錄。

1. 瀏覽器擴充-快速啟動

  1. 安裝 Google Keep Chrome 擴充功能 – Chrome 線上應用程式商店
  2. Chrome:【更多工具】→【建立捷徑…】,Edge:【應用程式】→【將此網站安裝為應用】
  3. Edge:【更多工具】→【釘選到工作列】

2. 快捷鍵

按 ? 即顯示可使用的快捷鍵。

鍵盤快速鍵

類別 功能 按鍵
一覽表 瀏覽下一個/上一個記事 J / K
  將記事移至下一個/上一個位置 Shift + J / K
  瀏覽下一個/上一個清單項目 N / P
  將清單項目移至下一個/上一個位置 Shift + N / P
應用程式 撰寫新記事 C
  撰寫新清單 L
  搜尋記事 /
  選取所有記事 Control + A
  開啟鍵盤快速鍵說明 ?
  提供意見 @
動作 封存記事 E
  將記事丟進垃圾桶 # 或 Del
  固定或取消固定記事 F
  選取記事 X
  在清單和格狀檢視之間切換 Control + G
編輯器 完成編輯 Esc 或 Control + Enter
  切換核取方塊 Control + Shift + 8
  縮排清單項目/移除清單項目縮排設定 Control + ] / [

新增記事或清單

Keep的文字內容分成記事與清單兩類,無法混用,以顯示核取方塊與隱藏核取方塊切換類型(Ctrl+Shift+8)。按 C 或 L (大小寫皆可)快速建立內容。

新增記事時,直接輸入「#標籤」再按〔Enter〕可直接建立或使用標籤。

選取記事

因為鍵盤所在清單與滑鼠游標清單是不同的位置,選取清單最好用滑鼠勾選,使用 X 快捷鍵經常會出錯。

多選記事後可執行批次操作,如一次刪除多個記事或一次給予標籤。

用標籤快速過濾

直接點擊記事下方的標籤按鈕或內容裡的「#標籤」,可過濾出專屬此標籤的所有記事。

OCR 圖片轉文字

按擷取圖片文字。

命令行

命令行工具下回分解。

解說影片

##

您可能也會有興趣的類似文章

Google Keep命令行工具:keepcli,快速編輯記事

$
0
0

keepcli是使用Python撰寫的Google Keep命令行工具,Windows安裝Python3與其安裝管理套件Pip後,也能在命令提示字元或Windows Terminal裡使用keepcli。

先展示keepcli的功能,再說明如何設定與安裝。

keepcli 功能初探

展示 keepcli 的使用方法與功能說明。

命令 功能說明
entries 查看所有記事或清單
show [標題] 顯示當前或某個標題的記事
current 設定那個記事為當前操作中的記事
useNote, un 使用某個記事
addText, at 附加文字到記錄尾端
useList, ul 使用某個清單
addItem, ai 新增清單的項目
checkItem 勾選指定的清單項目
uncheckItem 取消勾選指定的清單項目
create 建立記事
delete 刪除記事
  • current color 顏色: 目前能使用的顏色是: red, yellow, blue, green, gray
  • current pin / unpin: 固定與取消固定

接著說明安裝步驟。

步驟1. 產生Google應用程式密碼

  1. 瀏覽 https://google.com
  2. 【管理你的Google帳戶】
  3. 安全性
  4. 登入Google→開啟兩階段驗證
  5. 點擊應用程式密碼
  6. 產生一組密碼,將密碼記起來

步驟2. 安裝pip3與keepcli

sudo apt install python3-pip
pip3 install keepcli

步驟3. 修改PATH

keepcli安裝於 ~/.local/bin,若環境變數PATH未指到此路徑則修改 ~/.zshrc 將之加入。

第一次執行 keepcli

第一次執行keepcli時必須輸入Google帳號(無@gmail.com)與密碼(安裝步驟1 產生的密碼)。

正確登入後,keepcli會將帳密存入 ~/.keepcli/auth.yaml 檔案,同時會產生錄當前記事的設定檔 ~/.keepcli/config.yaml,若進入時發生Python錯誤,可修改config.yaml,將current修改成一個Keep記事的標題。

相關連結

解說影片

##

您可能也會有興趣的類似文章

es+fzf:超快速找檔神器-用Everything Search的命令行es.exe,整合fzf的模糊搜尋;WSL也能使用!

$
0
0

本文介紹兩個命令行工具:

  1. es.exe:Evcerything Search圖形介面工具的命令行
  2. fzf(Fast fuZzy Finder):模糊搜尋檔名工具,有Windows與*nix版本

用es.exe快速查出符合檔名後再交給fzf繼續縮小範圍並上下選取要操作的檔案。

更棒的是:在WSL 2裡可以直接用es.exe,找檔案的速度比fzf、locate或find等更是快上許多,再結合fzf就能快速切換目錄與執行檔案。

Everything Search與es.exe

自從2008年開始使用Everything Search後(參考:用Everything在電光石火間找到迷失的檔案),Everything變成必備工具,它直接由NTFS索引搜尋檔名,速度超快,極大地增進了工作效率。

而es.exe則是Everything的命令行客戶端工具,亦即Everything扮演伺服器角色,es.exe透過內部處理通訊(IPC,Inter-Process Commnuication)發出查詢字串給Everything並取回回應,再顯示在命令提示字元裡。es.exe做為客戶端,執行時Everything必須運行才能正確執行,若Everything未啟動,則會顯示下列錯誤訊息:

Error 8: Everything IPC window not found. Please make sure Everything is running.

es.exe下載:ES 1.1 Command Line Tool for Everything 1.4.1,下載最新的1.1.0.18版。

es.exe命令行選項

es.exe的執行選項很多,用 -h 會查詢說明;選項有 5 大類:

  1. 搜尋選項
  2. 排序選項
  3. 顯示選項
  4. 匯出選項
  5. 一般選項

以下是我常用的幾個:

  • 用正則運算式:es -r dropbox$
  • 顯示日期與檔案大小:es -dm -size .pdf
    • -dm:Date Modified
    • -dc:Date Created
    • -da:Date Accessed
  • 顯示日期、檔案大小與高亮顯示:es -dm -size -highlight .pdf
  • 加上-no或-no-就是取消,如-nosize
  • 用-save-settings將常用選項寫入登錄使能重複套用。-clear-settings則是清除設定
es.exe -dm -size -sizecolor 0x0d -dmcolor 0x0b -highlight -highlight-color 0x0e -save-settings

▼ 顏色代表碼(0x00~0xff)
es-colors

  • 下列選項和 dir 相同,可組合使用:
    • 選項開頭字元可斜線 / 或減號 – 皆可使用
    • /ad:只列出目錄(Attribute Directory)
    • /a-d:只列出檔案
    • /od:用日期由小到大排序(Order by Date Ascending)
    • /o-d:用日期由大到小排序(Order by Date Descending)
    • 以上把d換成s就是檔案大小(Size),n是檔名,e是面副檔名
  • es.exe搜尋按Ctrl+C中斷後,若出現字體顏色被改變,可以用color還原

與fzf整合

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
cd ~/.fzf/
./install
source ~/.zshrc

fzf輸入格式

  • 按〔Esc〕或輸入exit關閉視窗
  • 按〔Enter〕選用並關閉視窗,傳出的文字最後帶有換行符號
輸入字串 符合類型 說明
sbtrkt fuzzy-match Items that match sbtrkt
‘wild exact-match (quoted) Items that include wild
^music prefix-exact-match Items that start with music
.mp3$ suffix-exact-match Items that end with .mp3
!fire inverse-exact-match Items that do not include fire
!^music inverse-prefix-exact-match Items that do not start with music
!.mp3$ inverse-suffix-exact-match Items that do not end with .mp3

Windows裡如何使用es與fzf

  • 不像*nix能做多種變化,Windows裡我找到的方法:只能用剪貼簿。因為只要取回目錄名或檔名,因此不顯示日期與檔案大小:
es.exe -nodm -nosize -r dropbox$ | fzf | clip
cd 貼入剪貼簿內容
  • 必須切換為Unicode字碼頁,fzf才能正確顯示中文字:chcp 65001

es.exe選項

es -h:

ES 1.1.0.18
ES is a command line interface to search Everything from a command prompt.
ES uses the Everything search syntax.

Usage: es.exe [options] search text
Example: ES  Everything ext:exe;ini 


Search options
   -r <search>, -regex <search>
        Search using regular expressions.
   -i, -case
        Match case.
   -w, -ww, -whole-word, -whole-words
        Match whole words.
   -p, -match-path
        Match full path and file name.
   -a, -diacritics
        Match diacritical marks.

   -o <offset>, -offset <offset>
        Show results starting from offset.
   -n <num>, -max-results <num>
        Limit the number of results shown to <num>.

   -path <path>
        Search for subfolders and files in path.
   -parent-path <path>
        Search for subfolders and files in the parent of path.
   -parent <path>
        Search for files with the specified parent path.

   /ad
        Folders only.
   /a-d
        Files only.
   /a[RHSDAVNTPLCOIE]
        DIR style attributes search.
        R = Read only.
        H = Hidden.
        S = System.
        D = Directory.
        A = Archive.
        V = Device.
        N = Normal.
        T = Temporary.
        P = Sparse file.
        L = Reparse point.
        C = Compressed.
        O = Offline.
        I = Not content indexed.
        E = Encrypted.
        - = Prefix a flag with - to exclude.


Sort options
   -s
        sort by full path.
   -sort <name[-ascending|-descending]>, -sort-<name>[-ascending|-descending]
        Set sort
        name=name|path|size|extension|date-created|date-modified|date-accessed|
        attributes|file-list-file-name|run-count|date-recently-changed|date-run
   -sort-ascending, -sort-descending
        Set sort order

   /on, /o-n, /os, /o-s, /oe, /o-e, /od, /o-d
        DIR style sorts.
        N = Name.
        S = Size.
        E = Extension.
        D = Date modified.
        - = Sort in descending order.


Display options
   -name
   -path-column
   -full-path-and-name, -filename-column
   -extension, -ext
   -size
   -date-created, -dc
   -date-modified, -dm
   -date-accessed, -da
   -attributes, -attribs, -attrib
   -file-list-file-name
   -run-count
   -date-run
   -date-recently-changed, -rc
        Show the specified column.

   -highlight
        Highlight results.
   -highlight-color <color>
        Highlight color 0-255.

   -csv
   -efu
   -txt
   -m3u
   -m3u8
        Change display format.

   -size-format <format>
        0=auto, 1=Bytes, 2=KB, 3=MB.
   -date-format <format>
        0=auto, 1=ISO-8601, 2=FILETIME, 3=ISO-8601(UTC)

   -filename-color <color>
   -name-color <color>
   -path-color <color>
   -extension-color <color>
   -size-color <color>
   -date-created-color <color>, -dc-color <color>
   -date-modified-color <color>, -dm-color <color>
   -date-accessed-color <color>, -da-color <color>
   -attributes-color <color>
   -file-list-filename-color <color>
   -run-count-color <color>
   -date-run-color <color>
   -date-recently-changed-color <color>, -rc-color <color>
        Set the column color 0-255.

   -filename-width <width>
   -name-width <width>
   -path-width <width>
   -extension-width <width>
   -size-width <width>
   -date-created-width <width>, -dc-width <width>
   -date-modified-width <width>, -dm-width <width>
   -date-accessed-width <width>, -da-width <width>
   -attributes-width <width>
   -file-list-filename-width <width>
   -run-count-width <width>
   -date-run-width <width>
   -date-recently-changed-width <width>, -rc-width <width>
        Set the column width 0-200.

   -no-digit-grouping
        Don't group numbers with commas.
   -size-leading-zero
   -run-count-leading-zero
        Format the number with leading zeros, use with -no-digit-grouping.
   -double-quote
        Wrap paths and filenames with double quotes.


Export options
   -export-csv <out.csv>
   -export-efu <out.efu>
   -export-txt <out.txt>
   -export-m3u <out.m3u>
   -export-m3u8 <out.m3u8>
        Export to a file using the specified layout.
   -no-header
        Do not output a column header for CSV and EFU files.


General options
   -h, -help
        Display this help.

   -instance <name>
        Connect to the unique Everything instance name.
   -ipc1, -ipc2
        Use IPC version 1 or 2.
   -pause, -more
        Pause after each page of output.
   -hide-empty-search-results
        Don't show any results when there is no search.
   -empty-search-help
        Show help when no search is specified.
   -timeout <milliseconds>
        Timeout after the specified number of milliseconds to wait for
        the Everything database to load before sending a query.

   -set-run-count <filename> <count>
        Set the run count for the specified filename.
   -inc-run-count <filename>
        Increment the run count for the specified filename by one.
   -get-run-count <filename>
        Display the run count for the specified filename.
   -get-result-count
        Display the result count for the specified search.
   -get-total-size
        Display the total result size for the specified search.
   -save-settings, -clear-settings
        Save or clear settings.
   -version
        Display ES major.minor.revision.build version and exit.
   -get-everything-version
        Display Everything major.minor.revision.build version and exit.
   -no-result-error
        Set the error level if no results are found.


Notes 
    Internal -'s in options can be omitted, eg: -nodigitgrouping
    Switches can also start with a /
    Use double quotes to escape spaces and switches.
    Switches can be disabled by prefixing them with no-, eg: -no-size.
    Use ^ to escape \, &, |, >, < and ^.

WSL 2的應用

下回分解。

相關連結

解說影片

##

您可能也會有興趣的類似文章

[WSL#8] es.exe+fzf在WSL裡的應用

$
0
0

使用兩個Shell函數來達成快速切換目錄與開啟文件的功能。

✅ 修改後的.zshrc:https://gist.github.com/emisjerry/020ee1f5b58cfaf941456a02d20d45c8

相關連結

解說影片

##

您可能也會有興趣的類似文章

最近看到的COVID-19相關創意圖片

最近看到的令人動容的COVID-19照片/圖片

$
0
0

國家的強大不是高樓大廈,是同舟共濟的國民素質,是把照顧老人和小孩等弱勢視為優先的政府。

全洛杉磯的學校都關閉了,但提供給十八歲以下的孩子周一至周五的免費早午餐,超市也提供65歲市民專屬的採購時間…。

若圖片有侵權,請留言告知,感謝。

1

2

3

4

##

您可能也會有興趣的類似文章


[AHK#31] 命令行快速開啟最近項目;使用dir, fzf, clip與AutoHotkey

$
0
0

Windows的最近的項目是記錄在 %APPDATA%\Microsoft\Windows\Recent 資料夾裡,直接查看內容就可取得最近存取檔案或目錄的捷徑:

▼ 用檔案總管檢視

start shell:recent

▼ 用命令提示字元 cmd.exe,只列出.docx的項目

pushd %APPDATA%\Microsoft\Windows\Recent
dir /od /aa *.docx
popd

需求

在命令提示字元裡快速開啟最近的項目。

作法

在命令行結合 fzf.exe(Fast Fuzzy Finder,請參考:https://youtu.be/Atp7YvwHHig影片)與clip.exe,選擇要開啟的檔案,將檔案複製到系統剪貼簿,再使用AutoHotkey的腳本開啟檔案。

fzf.exe與clip.exe在新建的recent.bat裡,叫用AutoHotkey的clip_run.ahk。

取出檔案的寫法:

dir /o-d /aa /b "*%**" | fzf | clip

✅ recent.bat 批次檔與clip_run.ahk 原始檔:

https://gist.github.com/emisjerry/a8c10d2786de152bfb9ec1bc49047a6a

解說影片

##

您可能也會有興趣的類似文章

[Edge#3] 新Microsoft Edge與Google Chrome的簡單功能比較

$
0
0

▼ 比對版本
Edge 80.0.361.66
Chrome 80.0.3987.122

vs

Edge未提供或不同的功能

  1. 許多右鍵功能表選項未提供快捷按鍵
  2. 只有淺色、深色兩種佈景主題,無法安裝擴充主題
    • 不支援 Themes and apps
  3. 登入帳號是微軟帳號,部份需要Google帳號的擴充無法使用

Edge增強的功能

  1. IE模式
  2. 書籤列(我的最愛列)可設定僅顯示圖示將文字隱藏
  3. 擴充與建立捷徑(應用程式)提升到選單第一層,比Chrome方便
  4. 分頁右鍵功能表有重新開啟已關閉分頁選項,而Chrome在空白分頁處才有
  5. 將網頁釘選到工作列以方便開啟
  6. 支援沉浸式閱讀(https://jussiroine.com/2019/08/getting-started-with-windows-terminal/)
  7. 有網頁朗讀功能(…→大聲朗讀)或選取文字後按右鍵功能表
  8. PDF嵌入時有繪圖功能
  9. 分頁標籤有靜音按鈕能直接將有音訊的網頁切成靜音

解說影片

##

您可能也會有興趣的類似文章

Beastnotes:線上教學專用筆記工具

$
0
0

Beastnotes:線上教學專用筆記工具(Chrome擴充+網站服務)

專門輔助線上學習的筆記擴充,適用YouTube、Udemy等影片網站。
Beastnotes免費版提供3個課程,需要更多課程與筆記功能可付費購買:

💡 免費:最多3個筆記
💡 Scholar等級:Up to 10 notebooks,US$2.99 / month
💡 Sage等級:Up to 20 notebooks,US$4.99 / month

✅ Chrome擴充安裝:https://chrome.google.com/webstore/detail/beastnotes-%E2%96%AA-take-notes-f/ijdbgcbejbmcfcglmbahkfpadjbebgal
✅ Beastnotes網站:https://www.beastnotes.com/

解說影片

##

您可能也會有興趣的類似文章

Peacock:自訂不同顏色的vs-code擴充,輕易識別不同工作區

$
0
0

先前在介紹WSL適用的remote-WSL時提到為了方便識別是WSL啟動的或是Windows啟用的vs-code,可以變更佈景主題為不同設定來識別。變更佈景主題後,就沒辦法使用相同的編輯區主題,因此這個方法還不是很完善。幸好我們還有Peacock擴充可以使用,經由孔雀五彩繽紛的色彩,讓我們能一眼就辨識出不同的工作環境。

peacock

Peacock適用於工作區,建立方式如下:

  1. 在User的settings.json建立下兩個顏色設定,分別套用給Windows與WSL的各個工作區:
  "peacock.color": "#13321c",
  "peacock.remoteColor": "#68217A",
  1. 設定→輸入Peacock,勾選要影響的範圍
  2. 特定工作區要使用不同主題:〔F1〕→輸入Peacock,點擊【Peacock: Change to a favorite color】,變更後設定寫入.vscode/settings.json

解說影片

##

您可能也會有興趣的類似文章

讓Windows檔案總管具備MacOS Finder的預覽功能:QuickLook

$
0
0

MacOS Finder的預覽功能很方便,在不開啟應用程式的狀況下就能預先瀏覽檔案內容。
QuickLook(免費)補強了檔案總管缺少的這個功能。

✅ QuickLook GitHub網址:https://github.com/QL-Win/QuickLook
✅ QuickLook Plugin網址:https://github.com/QL-Win/QuickLook/wiki/Available-Plugins

解說影片

##

您可能也會有興趣的類似文章

[AHK#32] 讓多個cmd.exe共用命令歷史的變通作法(跨Session共用)

$
0
0

命令提示字元的執行歷史無法跨Session

每一個命令提示字元(cmd.exe)都是獨立的執行實例(Instance),有什麼辦法把第一個cmd.exe裡的命令歷史傳遞到另一個cmd.exe?

下面是變動的方法。

1. 取得並儲存執行歷史

取得cmd.exe執行歷史的命令:

doskey /history > c:\temp\_hist.cmd

/history可以使用/h取代。

我們可以建立快速查詢執行歷史的代名或批次:

▼ 代名

doskey h=doskey /h

接著用 hsave.bat 來儲存命令歷史與目前資料夾:

@echo off
doskey /history > c:\temp\_hist.cmd
echo %CD% | clip

2. 重新載入執行歷史

建立 hload.bat:

@echo off
chcp 65001
type c:\temp\_hist.cmd | fzf --tac | clip
clip_run.ahk

fzf的使用方法請參考:

fzf預設會被輸入倒著排列,用–tac則可取消倒排的作法。

clip_cd.ahk由系統剪貼簿取得在fzf裡選用的內容,處理後重新輸出給cmd.exe執行。

此個作法也適用於同一個cmd.exe,不過,其實按F7就有內建的選單可以用了!

批次檔原始碼

連結

解說影片

##

您可能也會有興趣的類似文章

[AHK#33] 重覆執行cmd.exe的「舊」命令

$
0
0

用兩個批次檔和兩個AutoHotkey腳本檔來執行先前執行過的cmd.exe命令。

✅ 批次檔與AutoHotkey腳本檔原始碼:https://gist.github.com/emisjerry/45b4b546d79aaf03c2eb51ba1f62def7

實際操作影片

##

您可能也會有興趣的類似文章


[Git#5] 產生Commit的檔案清單與相對路徑的壓縮檔;Windows適用

$
0
0

產生Commit檔案清單的Git指令

▼ 產生兩個Commit間的變動檔名清單

git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT 第一個CommitSHA 第二個CommitSHA

▼ 產生兩個Commit間的變動狀態與檔名清單

git diff --name-status 第一個CommitSHA 第二個CommitSHA

Windows批次檔產生export.7z與export.txt

▼ 使用批次檔 git-export.bat 將檔動檔案壓入export.7z
注意:批次檔裡的變數要用%AA,直接在命令行執行時只要用%A

for /f "usebackq tokens=*" %%A in (<code>git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT %1 %2</code>) do 7z a -sccUTF-8 export.7z "%%A"</code>

▼ git-export.bat原始碼:https://gist.github.com/emisjerry/4cdd266178be124eee2c71a3ef530f77

解說影片

##

您可能也會有興趣的類似文章

[Git#6] Bugtraq-快速瀏覽問題追蹤網頁(Issue Tracking System)

$
0
0

Bugtraq的功能

Bugtraq是一個在版本控制系統客戶端使用的規範,用以將提交訊息裡的問題單號形成超連結,供開發人員可以快速瀏覽問題單內容。

Bugtraq設定

SmartGit可以將設定存放於:

  1. 儲存庫根目錄 .gitbugtraq 檔案
  2. 儲存庫的設定檔 .git/config

如果要所有儲存庫共用設定,則可存放於 C:\Users\帳號\.gitconfig

▼ 設定範例

[bugtraq "terminal"]
  url = https://github.com/microsoft/terminal/issues/%BUGID%
  logregex = "[#](\\d+)"

解說影片

##

您可能也會有興趣的類似文章

提升輸入效率的文字替換工具:WriteYours與PhraseExpress

$
0
0

善用工具可以大幅加快文字輸入效率。如果有較旺盛的學習力,強烈建議使用AutoHotkey,但若只想輕鬆、立即使用,可試看看WriteYours或PhraseExpress。

工具名稱 適用平台 費用
WriteYours Windows 免費
PhraseExpress Windows,MacOS,iOS 個人試用版與美金49.95元起的商用版

WriteYours

PhraseExpress(片語特快車)

參考

解說影片

<

p>##

您可能也會有興趣的類似文章

用Mini Diary紀錄每天的美好🌼與心情😊👿😭👻

$
0
0

Mini Diary小工具

Mini Diary有Windows、Linux與MacOS等版本,提供逐日記錄心情、思考的日記功能。

特色彙總如下:

  1. 密碼保護個人隱私
  2. 日記文字加密儲存
  3. 介面清爽簡潔
  4. 日記可匯出、匯入,可攜性強
  5. 可產生PDF、Markdown等輸出格式

解說影片

##

您可能也會有興趣的類似文章

[AHK#34] 用AutoHotkey快速取得上傳Google相簿的圖片網址

$
0
0

需求:上傳圖片到Google相簿並快速取得圖片分享網址,以貼入文章

Google相簿的本地工具似乎都不太好用,連線速度慢且經常超過存取限制(API每天1萬次),最終只好用Google相簿網頁和AutoHotkey以按鍵方式解決。

Google Chrome須安裝的擴充

AutoHotkey腳本

▼ 腳本原始碼:https://gist.github.com/emisjerry/9995c51a21f8a3c0d3ec195f9478271f

教學影片

##

您可能也會有興趣的類似文章

Viewing all 897 articles
Browse latest View live