Basic Usage of KeePass  [draft]

Last Pass is a password manager that is very popular. However, it is not open source, and it has got hacked again recently. This raises the awareness of using offline password manager INSTEAD. Before this I was using Firefox Password, but now I’ve decided to switch to KeePass. Here’s my way to set it up. TODO: Finish this article Test encryption: ...

March 7, 2023 · 1 min · 188 words · Me

如何让Win10自带中文输入法使用日语键盘(106/109)

问题概述 Windows10中文输入法的设定里面,没有像日文输入法的"硬件键盘布局"那样的设置。对于正在使用日语键盘的用户,特别是无法更换键盘的笔记本用户来说这会造成诸多不便。 解决方案 在微软正式加入这个功能之前,目前最好的方法是修改注册表设置。做法: win键+R或者搜索打开regedit.exe 移动到\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000804 将Layout File的key值从KBDUS.DLL改为KBD106.DLL 重启 使用批处理文件 对于经常更换键盘的用户来说,可以使用以下的批处理文件来快速更改设置 新建文本文件,复制以下代码并将文件后缀名修改为.bat 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 @echo off if not "%1"=="am_admin" ( powershell -Command "Start-Process -Verb RunAs -FilePath '%0' -ArgumentList 'am_admin'" exit /b ) goto choice :choice set /p x="Pinyin keyboard layout(US->0/JP->1):" if "%x%" == "0" ( goto US ) else if "%x%" == "1" ( goto JP ) else ( echo Invalid value....

October 3, 2022 · 1 min · 186 words · Me

How to fix missing search icons on Windows 10

Issue If you use install the Google Drive’s desktop app on Windows 10, there’s a good chance that your Windows search bar result will end up looking like this: most UMP app icons are corrupted. Solutions According to user Zenexer and iSaumya on StackExchange, here are some viable solutions. Solution 1 Some third-party apps like Google Drive will try to handle .png thumbnail by installing their own thumbnail generators. This breaks Windows 10 somehow....

October 3, 2022 · 2 min · 395 words · Me